aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/tuplestore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/tuplestore.h')
-rw-r--r--src/include/utils/tuplestore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/tuplestore.h b/src/include/utils/tuplestore.h
index 0c3e2eaf9f0..df38ab944ca 100644
--- a/src/include/utils/tuplestore.h
+++ b/src/include/utils/tuplestore.h
@@ -8,7 +8,7 @@
* a dumbed-down version of tuplesort.c; it does no sorting of tuples
* but can only store and regurgitate a sequence of tuples. However,
* because no sort is required, it is allowed to start reading the sequence
- * before it has all been written. This is particularly useful for cursors,
+ * before it has all been written. This is particularly useful for cursors,
* because it allows random access within the already-scanned portion of
* a query without having to process the underlying scan to completion.
* Also, it is possible to support multiple independent read pointers.