aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2016-05-02 16:46:42 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2016-05-02 16:46:42 -0300
commit6b6091682959adce6d66dcd6a047eb21cb120b16 (patch)
tree5a0ce20346911a1cb14e21e63ba4b5b06acbb25a /src
parent234a266066dc1c06a92ec85efb2f8948b7fbd320 (diff)
downloadpostgresql-6b6091682959adce6d66dcd6a047eb21cb120b16.tar.gz
postgresql-6b6091682959adce6d66dcd6a047eb21cb120b16.zip
Fix thinko in comment
Pointed out by Andres Freund
Diffstat (limited to 'src')
-rw-r--r--src/include/replication/slot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/replication/slot.h b/src/include/replication/slot.h
index 4a56df71039..e00562d274f 100644
--- a/src/include/replication/slot.h
+++ b/src/include/replication/slot.h
@@ -69,8 +69,8 @@ typedef struct ReplicationSlotPersistentData
/*
* Oldest LSN that the client has acked receipt for. This is used as the
* start_lsn point in case the client doesn't specify one, and also as a
- * safety measure to back off in case the client specifies a start_lsn
- * that's further in the future than this value.
+ * safety measure to jump forwards in case the client specifies a
+ * start_lsn that's further in the past than this value.
*/
XLogRecPtr confirmed_flush;