Skip to content

Commit 77b6f07

Browse files
committed
relationship of -> between
1 parent c181d97 commit 77b6f07

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

box.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ sbox_check(SBOX *box)
9797
}
9898

9999
/*
100-
* Puts the "center" of a box "b" into a point "c" and returns it.
100+
* Puts the 'center' of a box b' into a point 'c' and returns it.
101101
*/
102102
static void
103103
sbox_center(SPoint *c, const SBOX *b)

gist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PG_FUNCTION_INFO_V1(g_spherekey_penalty);
3232
PG_FUNCTION_INFO_V1(g_spherekey_picksplit);
3333

3434
/*
35-
* Returns the relationship of two keys as PGS_KEY_REL.
35+
* Returns the relationship between two keys as PGS_KEY_REL.
3636
*/
3737
uchar
3838
spherekey_interleave(const int32 *k1, const int32 *k2)

key.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,49 +122,49 @@ Datum spherekey_ge(PG_FUNCTION_ARGS);
122122
Datum spherekey_gt(PG_FUNCTION_ARGS);
123123

124124
/*
125-
* Returns relationship of two keys.
125+
* Returns relationship between the two keys.
126126
* Calls skey_cmp(const int32 *, const int32 *) for two keys.
127127
*/
128128
Datum spherekey_cmp(PG_FUNCTION_ARGS);
129129

130130
/*
131-
* Returns relationship of keys of two spherical points.
131+
* Returns relationship between the keys of two spherical points.
132132
* Calls skey_cmp(const int32 *, const int32 *) for two points.
133133
*/
134134
Datum spherepoint_cmp(PG_FUNCTION_ARGS);
135135

136136
/*
137-
* Returns relationship of keys of two spherical circles.
137+
* Returns relationship between the keys of two spherical circles.
138138
* Calls skey_cmp(const int32 *, const int32 *) for two circles.
139139
*/
140140
Datum spherecircle_cmp(PG_FUNCTION_ARGS);
141141

142142
/*
143-
* Returns relationship of keys of two spherical ellipses.
143+
* Returns relationship between the keys of two spherical ellipses.
144144
* Calls skey_cmp(const int32 *, const int32 *) for two ellipses.
145145
*/
146146
Datum sphereellipse_cmp(PG_FUNCTION_ARGS);
147147

148148
/*
149-
* Returns relationship of keys of two spherical lines.
149+
* Returns relationship between the keys of two spherical lines.
150150
* Calls skey_cmp(const int32 *, const int32 *) for two lines.
151151
*/
152152
Datum sphereline_cmp(PG_FUNCTION_ARGS);
153153

154154
/*
155-
* Returns relationship of keys of two spherical paths.
155+
* Returns relationship between the keys of two spherical paths.
156156
* Calls skey_cmp(const int32 *, const int32 *) for two paths.
157157
*/
158158
Datum spherepath_cmp(PG_FUNCTION_ARGS);
159159

160160
/*
161-
* Returns relationship of keys of two spherical polygons.
161+
* Returns relationship between the keys of two spherical polygons.
162162
* Calls skey_cmp(const int32 *, const int32 *) for two polygons.
163163
*/
164164
Datum spherepoly_cmp(PG_FUNCTION_ARGS);
165165

166166
/*
167-
* Returns relationship of keys of two spherical boxes.
167+
* Returns relationship between the keys of two spherical boxes.
168168
* Calls skey_cmp(const int32 *, const int32 *) for two boxes.
169169
*/
170170
Datum spherebox_cmp(PG_FUNCTION_ARGS);

0 commit comments

Comments
 (0)