diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-10-10 11:51:45 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-10-10 11:51:45 +0900 |
commit | 3a36543d7d08eef6496fe3511f4cf04cba14f572 (patch) | |
tree | 409b6580fa7fa303bb47ca2533da4286de234bd2 | |
parent | 912af1c7e9c9cc5e2cff4a506e829d6ea006ba9a (diff) |
Fix two typos in xlogstats.h and xlogstats.c
Issue found while browsing this area of the code, introduced and
copy-pasted around by 2258e76f90bf.
Backpatch-through: 15
-rw-r--r-- | src/backend/access/transam/xlogstats.c | 2 | ||||
-rw-r--r-- | src/include/access/xlogstats.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlogstats.c b/src/backend/access/transam/xlogstats.c index f92d9e13b17..85963a6ac29 100644 --- a/src/backend/access/transam/xlogstats.c +++ b/src/backend/access/transam/xlogstats.c @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * * xlogstats.c - * Functions for WAL Statitstics + * Functions for WAL Statistics * * Copyright (c) 2022-2025, PostgreSQL Global Development Group * diff --git a/src/include/access/xlogstats.h b/src/include/access/xlogstats.h index 528a640524a..6ec6670d44c 100644 --- a/src/include/access/xlogstats.h +++ b/src/include/access/xlogstats.h @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * * xlogstats.h - * Definitions for WAL Statitstics + * Definitions for WAL Statistics * * Copyright (c) 2022-2025, PostgreSQL Global Development Group * |