{
            ereport(WARNING,
                    (errcode(ERRCODE_ADMIN_SHUTDOWN),
-                    errmsg("canceling the wait for replication and terminating connection due to administrator command"),
-                    errdetail("The transaction has already been committed locally but might have not been replicated to the standby.")));
+                    errmsg("canceling the wait for synchronous replication and terminating connection due to administrator command"),
+                    errdetail("The transaction has already committed locally, but may not have been replicated to the standby.")));
            whereToSendOutput = DestNone;
            SyncRepCancelWait();
            break;
            QueryCancelPending = false;
            ereport(WARNING,
                    (errmsg("canceling wait for synchronous replication due to user request"),
-                    errdetail("The transaction has committed locally, but may not have replicated to the standby.")));
+                    errdetail("The transaction has already committed locally, but may not have been replicated to the standby.")));
            SyncRepCancelWait();
            break;
        }