diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-01-28 16:47:36 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-01-28 16:47:36 +0900 |
commit | 62e2ddd4ca47756372f2788256f445bba6bb492c (patch) | |
tree | d513bbcde83d6c80e92bd32a3fcb19d3a4e56029 | |
parent | 7f46eaf035440564e7dae3b03916735b92c83248 (diff) | |
download | postgresql-62e2ddd4ca47756372f2788256f445bba6bb492c.tar.gz postgresql-62e2ddd4ca47756372f2788256f445bba6bb492c.zip |
Fix typos in comments and doc
overriden -> overridden
The misspelling in create_extension.sgml was introduced in b67aaf2,
so no need to backpatch.
-rw-r--r-- | doc/src/sgml/ref/create_extension.sgml | 2 | ||||
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 2 | ||||
-rw-r--r-- | src/makefiles/Makefile.win32 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_extension.sgml b/doc/src/sgml/ref/create_extension.sgml index d4cc310918e..007d8c93306 100644 --- a/doc/src/sgml/ref/create_extension.sgml +++ b/doc/src/sgml/ref/create_extension.sgml @@ -97,7 +97,7 @@ CREATE EXTENSION [ IF NOT EXISTS ] <replaceable class="parameter">extension_name </para> <para> If the extension specifies <literal>schema</> in its control file, - the schema cannot be overriden with <literal>SCHEMA</> clause. + the schema cannot be overridden with <literal>SCHEMA</> clause. The <literal>SCHEMA</> clause in this case works as follows: <itemizedlist> <listitem> diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index c0192398604..6c750990ac2 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -204,7 +204,7 @@ AuxiliaryProcessMain(int argc, char *argv[]) * process command arguments */ - /* Set defaults, to be overriden by explicit options below */ + /* Set defaults, to be overridden by explicit options below */ if (!IsUnderPostmaster) InitializeGUCOptions(); diff --git a/src/makefiles/Makefile.win32 b/src/makefiles/Makefile.win32 index fed124330de..5f26a091d25 100644 --- a/src/makefiles/Makefile.win32 +++ b/src/makefiles/Makefile.win32 @@ -44,7 +44,7 @@ override CPPFLAGS+= -DUSE_DL_IMPORT endif # it is better to install shared-libraries anyway? -# may be overriden with make MAKE_DLL=false install +# may be overridden with make MAKE_DLL=false install ifndef MAKE_DLL MAKE_DLL = true endif |