@@ -23,34 +23,34 @@ typedef struct
2323#define PGS_BOX_CONT_CIRCLE 1 /* box contains circle */
2424#define PGS_CIRCLE_CONT_BOX 2 /* circle contains box */
2525#define PGS_BOX_CIRCLE_EQUAL 3 /* circle equals box */
26- #define PGS_BOX_CIRCLE_OVER 4 /* circle and box are overlapping */
26+ #define PGS_BOX_CIRCLE_OVER 4 /* circle and box overlap */
2727
2828/* PGS_BOX_LINE_REL Box and line */
2929#define PGS_BOX_LINE_AVOID 0 /* box avoids line */
3030#define PGS_BOX_CONT_LINE 1 /* box contains line */
31- #define PGS_BOX_LINE_OVER 2 /* box and line are overlapping */
31+ #define PGS_BOX_LINE_OVER 2 /* box and line overlap */
3232
3333/* PGS_BOX_PATH_REL Box and path */
3434#define PGS_BOX_PATH_AVOID 0 /* box avoids path */
3535#define PGS_BOX_CONT_PATH 1 /* box contains path */
36- #define PGS_BOX_PATH_OVER 2 /* box and path are overlapping */
36+ #define PGS_BOX_PATH_OVER 2 /* box and path overlap */
3737
3838/* PGS_BOX_POLY_REL Box and polygon */
3939#define PGS_BOX_POLY_AVOID 0 /* box avoids polygon */
4040#define PGS_BOX_CONT_POLY 1 /* box contains polygon */
4141#define PGS_POLY_CONT_BOX 2 /* polygon contains box */
42- #define PGS_BOX_POLY_OVER 3 /* polygon and box are overlapping */
42+ #define PGS_BOX_POLY_OVER 3 /* polygon and box overlap */
4343
4444/* PGS_BOX_ELLIPSE_REL Box and ellipse */
4545#define PGS_BOX_ELLIPSE_AVOID 0 /* box avoids ellipse */
4646#define PGS_BOX_CONT_ELLIPSE 1 /* box contains ellipse */
4747#define PGS_ELLIPSE_CONT_BOX 2 /* ellipse contains box */
48- #define PGS_BOX_ELLIPSE_OVER 3 /* ellipse and box are overlapping */
48+ #define PGS_BOX_ELLIPSE_OVER 3 /* ellipse and box overlap */
4949
5050/* PGS_BOX_REL Box and box */
5151#define PGS_BOX_AVOID 0 /* box avoids other box */
5252#define PGS_BOX_CONT 1 /* box contains other box */
53- #define PGS_BOX_OVER 2 /* boxes are overlapping */
53+ #define PGS_BOX_OVER 2 /* boxes overlap */
5454
5555
5656/*
@@ -176,22 +176,22 @@ Datum spherecircle_cont_box_com(PG_FUNCTION_ARGS);
176176Datum spherecircle_cont_box_com_neg (PG_FUNCTION_ARGS );
177177
178178/*
179- * Checks whether a circle and a box are overlapping .
179+ * Checks whether a circle and a box overlap .
180180 */
181181Datum spherebox_overlap_circle (PG_FUNCTION_ARGS );
182182
183183/*
184- * Checks whether a circle and a box aren 't overlapping .
184+ * Checks whether a circle and a box don 't overlap .
185185 */
186186Datum spherebox_overlap_circle_neg (PG_FUNCTION_ARGS );
187187
188188/*
189- * Checks whether a circle and a box are overlapping .
189+ * Checks whether a circle and a box overlap .
190190 */
191191Datum spherebox_overlap_circle_com (PG_FUNCTION_ARGS );
192192
193193/*
194- * Checks whether a circle and a box aren 't overlapping .
194+ * Checks whether a circle and a box don 't overlap .
195195 */
196196Datum spherebox_overlap_circle_com_neg (PG_FUNCTION_ARGS );
197197
@@ -216,22 +216,22 @@ Datum spherebox_cont_line_com(PG_FUNCTION_ARGS);
216216Datum spherebox_cont_line_com_neg (PG_FUNCTION_ARGS );
217217
218218/*
219- * Checks whether a box and a line are overlapping .
219+ * Checks whether a box and a line overlap .
220220 */
221221Datum spherebox_overlap_line (PG_FUNCTION_ARGS );
222222
223223/*
224- * Checks whether a box and a line aren 't overlapping .
224+ * Checks whether a box and a line don 't overlap .
225225 */
226226Datum spherebox_overlap_line_neg (PG_FUNCTION_ARGS );
227227
228228/*
229- * Checks whether a box and a line are overlapping .
229+ * Checks whether a box and a line overlap .
230230 */
231231Datum spherebox_overlap_line_com (PG_FUNCTION_ARGS );
232232
233233/*
234- * Checks whether a box and a line aren 't overlapping .
234+ * Checks whether a box and a line don 't overlap .
235235 */
236236Datum spherebox_overlap_line_com_neg (PG_FUNCTION_ARGS );
237237
@@ -256,22 +256,22 @@ Datum spherebox_cont_path_com(PG_FUNCTION_ARGS);
256256Datum spherebox_cont_path_com_neg (PG_FUNCTION_ARGS );
257257
258258/*
259- * Checks whether a box and a path are overlapping .
259+ * Checks whether a box and a path overlap .
260260 */
261261Datum spherebox_overlap_path (PG_FUNCTION_ARGS );
262262
263263/*
264- * Checks whether a box and a path aren 't overlapping .
264+ * Checks whether a box and a path don 't overlap .
265265 */
266266Datum spherebox_overlap_path_neg (PG_FUNCTION_ARGS );
267267
268268/*
269- * Checks whether a box and a path are overlapping .
269+ * Checks whether a box and a path overlap .
270270 */
271271Datum spherebox_overlap_path_com (PG_FUNCTION_ARGS );
272272
273273/*
274- * Checks whether a box and a path aren 't overlapping .
274+ * Checks whether a box and a path don 't overlap .
275275 */
276276Datum spherebox_overlap_path_com_neg (PG_FUNCTION_ARGS );
277277
@@ -316,22 +316,22 @@ Datum spherepoly_cont_box_com(PG_FUNCTION_ARGS);
316316Datum spherepoly_cont_box_com_neg (PG_FUNCTION_ARGS );
317317
318318/*
319- * Checks whether a polygon and a box are overlapping .
319+ * Checks whether a polygon and a box overlap .
320320 */
321321Datum spherebox_overlap_poly (PG_FUNCTION_ARGS );
322322
323323/*
324- * Checks whether a polygon and a box aren 't overlapping .
324+ * Checks whether a polygon and a box don 't overlap .
325325 */
326326Datum spherebox_overlap_poly_neg (PG_FUNCTION_ARGS );
327327
328328/*
329- * Checks whether a polygon and a box are overlapping .
329+ * Checks whether a polygon and a box overlap .
330330 */
331331Datum spherebox_overlap_poly_com (PG_FUNCTION_ARGS );
332332
333333/*
334- * Checks whether a polygon and a box aren 't overlapping .
334+ * Checks whether a polygon and a box don 't overlap .
335335 */
336336Datum spherebox_overlap_poly_com_neg (PG_FUNCTION_ARGS );
337337
@@ -376,22 +376,22 @@ Datum sphereellipse_cont_box_com(PG_FUNCTION_ARGS);
376376Datum sphereellipse_cont_box_com_neg (PG_FUNCTION_ARGS );
377377
378378/*
379- * Checks whether an ellipse and a box are overlapping .
379+ * Checks whether an ellipse and a box overlap .
380380 */
381381Datum spherebox_overlap_ellipse (PG_FUNCTION_ARGS );
382382
383383/*
384- * Checks whether an ellipse and a box aren 't overlapping .
384+ * Checks whether an ellipse and a box don 't overlap .
385385 */
386386Datum spherebox_overlap_ellipse_neg (PG_FUNCTION_ARGS );
387387
388388/*
389- * Checks whether an ellipse and a box are overlapping .
389+ * Checks whether an ellipse and a box overlap .
390390 */
391391Datum spherebox_overlap_ellipse_com (PG_FUNCTION_ARGS );
392392
393393/*
394- * Checks whether an ellipse and a box aren 't overlapping .
394+ * Checks whether an ellipse and a box don 't overlap .
395395 */
396396Datum spherebox_overlap_ellipse_com_neg (PG_FUNCTION_ARGS );
397397
@@ -416,12 +416,12 @@ Datum spherebox_cont_box_com(PG_FUNCTION_ARGS);
416416Datum spherebox_cont_box_com_neg (PG_FUNCTION_ARGS );
417417
418418/*
419- * Checks whether boxes are overlapping .
419+ * Checks whether boxes overlap .
420420 */
421421Datum spherebox_overlap_box (PG_FUNCTION_ARGS );
422422
423423/*
424- * Checks whether boxes aren 't overlapping .
424+ * Checks whether boxes don 't overlap .
425425 */
426426Datum spherebox_overlap_box_neg (PG_FUNCTION_ARGS );
427427
0 commit comments