diff options
author | David Rowley <drowley@postgresql.org> | 2023-11-10 00:18:33 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-11-10 00:18:33 +1300 |
commit | 2be56450758850282cb5cf667430d1ece64de955 (patch) | |
tree | 72f7cfbf3fd23ba7cd80bcf9bb9529f2dd6fa806 /src/backend/utils/misc | |
parent | b17a02be27e01d46cf9a74d173009547305d4cf8 (diff) | |
download | postgresql-2be56450758850282cb5cf667430d1ece64de955.tar.gz postgresql-2be56450758850282cb5cf667430d1ece64de955.zip |
Ensure we use the correct spelling of "ensure"
We seem to have accidentally used "insure" in a few places. Correct
that.
Author: Peter Smith
Discussion: https://postgr.es/m/CAHut+Pv0biqrhA3pMhu40aDsj343mTsD75khKnHsLqR8P04f=Q@mail.gmail.com
Backpatch-through: 12, oldest supported version
Diffstat (limited to 'src/backend/utils/misc')
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 22d43287e36..0d9242307d7 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1124,7 +1124,7 @@ static struct config_bool ConfigureNamesBool[] = {"fsync", PGC_SIGHUP, WAL_SETTINGS, gettext_noop("Forces synchronization of updates to disk."), gettext_noop("The server will use the fsync() system call in several places to make " - "sure that updates are physically written to disk. This insures " + "sure that updates are physically written to disk. This ensures " "that a database cluster will recover to a consistent state after " "an operating system or hardware crash.") }, |