Added space before comment [skip ci]

This commit is contained in:
Andrew Kane
2023-08-05 10:20:30 -07:00
parent 37b49b0a37
commit e45c84fd46

View File

@@ -681,6 +681,7 @@ vector_spherical_distance(PG_FUNCTION_ARGS)
dp += a->x[i] * b->x[i];
distance = (double) dp;
/* Prevent NaN with acos with loss of precision */
if (distance > 1)
distance = 1;