diff options
author | Fujii Masao <fujii@postgresql.org> | 2021-04-02 16:26:36 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2021-04-02 16:26:36 +0900 |
commit | 98e5bd103f887326e381c509c2fbe879ba3ea2f3 (patch) | |
tree | ae50daa6248ff4bd7b8290df029c8e6cb0d82a19 | |
parent | a4fac4ffe8f8d543a10ac7debf1157e34963ece3 (diff) | |
download | postgresql-98e5bd103f887326e381c509c2fbe879ba3ea2f3.tar.gz postgresql-98e5bd103f887326e381c509c2fbe879ba3ea2f3.zip |
Fix typos in comments.
Author: Masahiko Sawada
Discussion: https://postgr.es/m/CAD21AoA1YL7t0nzVSEySx6zOaE7xO3r0jyu8hkitGL2_XbaMxQ@mail.gmail.com
-rw-r--r-- | contrib/amcheck/verify_heapam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/amcheck/verify_heapam.c b/contrib/amcheck/verify_heapam.c index 3fb709b842e..11ace483d04 100644 --- a/contrib/amcheck/verify_heapam.c +++ b/contrib/amcheck/verify_heapam.c @@ -777,7 +777,7 @@ check_tuple_visibility(HeapCheckContext *ctx) case XID_COMMITTED: /* * The tuple is dead, because the xvac transaction moved - * it off and comitted. It's checkable, but also prunable. + * it off and committed. It's checkable, but also prunable. */ return true; @@ -851,7 +851,7 @@ check_tuple_visibility(HeapCheckContext *ctx) case XID_ABORTED: /* * The tuple is dead, because the xvac transaction moved - * it off and comitted. It's checkable, but also prunable. + * it off and committed. It's checkable, but also prunable. */ return true; } |