Skip to content

Commit 56ebc6a

Browse files
committed
Fix typo: itterate -> iterate
1 parent 8d395ff commit 56ebc6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Use a PostgreSQL result cursor from node with an easy to use API.
55

66
### why?
77

8-
Sometimes you need to itterate through a table in chunks. It's extremely inefficient to use hand-crafted `LIMIT` and `OFFSET` queries to do this.
8+
Sometimes you need to iterate through a table in chunks. It's extremely inefficient to use hand-crafted `LIMIT` and `OFFSET` queries to do this.
99
PostgreSQL provides built-in functionality to fetch a "cursor" to your results and page through the cursor efficiently fetching chunks of the results with full MVCC compliance.
1010

1111
This actually ends up pairing very nicely with node's _asyncness_ and handling a lot of data. PostgreSQL is rad.

0 commit comments

Comments
 (0)