diff --git a/doc/src/sgml/ref/create_extension.sgml b/doc/src/sgml/ref/create_extension.sgml index d4cc310918..007d8c9330 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 ] extension_name If the extension specifies schema in its control file, - the schema cannot be overriden with SCHEMA clause. + the schema cannot be overridden with SCHEMA clause. The SCHEMA clause in this case works as follows: diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index c019239860..6c750990ac 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 fed124330d..5f26a091d2 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