Skip to content

Commit 31680b1

Browse files
authored
Merge pull request #96 from 0xflotus/patch-1
Fix typo
2 parents 1a4d4b8 + 2c794bc commit 31680b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on the `GIN` access methods code.
1616

1717
- Slow ranking. It is need position information about lexems to ranking. `GIN`
1818
index doesn't store positions of lexems. So after index scan we need additional
19-
heap scan to retreive lexems positions.
19+
heap scan to retrieve lexems positions.
2020
- Slow phrase search with `GIN` index. This problem relates with previous
2121
problem. It is need position information to perform phrase search.
2222
- Slow ordering by timestamp. `GIN` index can't store some related information
@@ -239,7 +239,7 @@ SELECT * FROM query
239239

240240
For type: `anyarray`
241241

242-
This operator class stores `anyarrray` elements with length of the array.
242+
This operator class stores `anyarray` elements with length of the array.
243243
Supports operators `&&`, `@>`, `<@`, `=`, `%` operators. Supports ordering by `<=>` operator.
244244
For example we have the table:
245245

@@ -278,7 +278,7 @@ SELECT * FROM test_array WHERE i && '{1}' ORDER BY i <=> '{1}' ASC;
278278

279279
For type: `anyarray`
280280

281-
This operator class stores `anyarrray` elements with any supported by module
281+
This operator class stores `anyarray` elements with any supported by module
282282
field.
283283

284284
## Todo

0 commit comments

Comments
 (0)