Remove duplicate word.
authorRobert Haas <rhaas@postgresql.org>
Fri, 18 Dec 2015 17:43:52 +0000 (12:43 -0500)
committerRobert Haas <rhaas@postgresql.org>
Fri, 18 Dec 2015 17:43:52 +0000 (12:43 -0500)
Kyotaro Horiguchi

src/backend/replication/syncrep.c

index 325239d63586279c18c70cbbdac69147582705a3..1bc584fa43c094b7a7c4daa938384bbaf622343c 100644 (file)
@@ -183,7 +183,7 @@ SyncRepWaitForLSN(XLogRecPtr XactCommitLSN)
        /*
         * If a wait for synchronous replication is pending, we can neither
         * acknowledge the commit nor raise ERROR or FATAL.  The latter would
-        * lead the client to believe that that the transaction aborted, which
+        * lead the client to believe that the transaction aborted, which
         * is not true: it's already committed locally. The former is no good
         * either: the client has requested synchronous replication, and is
         * entitled to assume that an acknowledged commit is also replicated,