[geometry] Use && instead of "and"

This is not Python. :))

https://github.com/harfbuzz/harfbuzz/pull/4727#issuecomment-2131381810
This commit is contained in:
Behdad Esfahbod 2024-05-25 12:14:05 -06:00
parent 484cb2608e
commit ee0c7d6bc5

View file

@ -140,7 +140,7 @@ struct hb_transform_t
void translate (float x, float y)
{
if (x == 0.f and y == 0.f)
if (x == 0.f && y == 0.f)
return;
x0 += xx * x + xy * y;