diff options
author | Magnus Hagander <magnus@hagander.net> | 2016-02-01 11:43:48 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2016-02-01 11:43:48 +0100 |
commit | e51ab85cd95855d541311f204e1e7db2c40301f7 (patch) | |
tree | f2f96f22703118680e6e671f99d32c04facb834b /src/backend/replication/logical/origin.c | |
parent | 61ce1e8f154aefa97e9e5d5796f7b36c857efc74 (diff) | |
download | postgresql-e51ab85cd95855d541311f204e1e7db2c40301f7.tar.gz postgresql-e51ab85cd95855d541311f204e1e7db2c40301f7.zip |
Fix typos in comments
Author: Michael Paquier
Diffstat (limited to 'src/backend/replication/logical/origin.c')
-rw-r--r-- | src/backend/replication/logical/origin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c index 651f53f6f10..757b50eb10b 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -677,7 +677,7 @@ StartupReplicationOrigin(void) errmsg("could not open file \"%s\": %m", path))); - /* verify magic, thats written even if nothing was active */ + /* verify magic, that is written even if nothing was active */ readBytes = read(fd, &magic, sizeof(magic)); if (readBytes != sizeof(magic)) ereport(PANIC, |