summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/backend/index.html2
-rw-r--r--src/tools/msvc/README2
-rw-r--r--src/tools/msvc/VSObjectFactory.pm2
-rwxr-xr-xsrc/tools/pginclude/pgcompinclude2
-rwxr-xr-xsrc/tools/pginclude/pgrminclude2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/backend/index.html b/src/tools/backend/index.html
index 19945f8661..eb4978bfe0 100644
--- a/src/tools/backend/index.html
+++ b/src/tools/backend/index.html
@@ -111,7 +111,7 @@ flowchart.</p>
<hr />
<p>Another area of interest is the shared memory area, which
-contains data accessable to all backends. It has recently used
+contains data accessible to all backends. It has recently used
data/index blocks, locks, backend process information, and lookup
tables for these structures:</p>
diff --git a/src/tools/msvc/README b/src/tools/msvc/README
index ad0eca3672..bbadb34829 100644
--- a/src/tools/msvc/README
+++ b/src/tools/msvc/README
@@ -86,7 +86,7 @@ Description of the internals of the Visual Studio build process
By typing 'build' the user starts the build.bat wrapper which simply passes
it's arguments to build.pl.
In build.pl the user's buildenv.pl is used to set up the build environment
-(i. e. path to bison and flex). In addtion his config.pl file is merged into
+(i. e. path to bison and flex). In addition his config.pl file is merged into
config_default.pl to create the configuration arguments.
These configuration arguments are passed over to Mkvcbuild::mkvcbuild
(Mkvcbuild.pm) which creates the Visual Studio project and solution files.
diff --git a/src/tools/msvc/VSObjectFactory.pm b/src/tools/msvc/VSObjectFactory.pm
index 44db1f6814..3bed922991 100644
--- a/src/tools/msvc/VSObjectFactory.pm
+++ b/src/tools/msvc/VSObjectFactory.pm
@@ -81,7 +81,7 @@ sub DetermineVisualStudioVersion
if (!defined($nmakeVersion))
{
- # Determine version of nmake command, to set proper verison of visual studio
+ # Determine version of nmake command, to set proper version of visual studio
# we use nmake as it has existed for a long time and still exists in visual studio 2010
open(P,"nmake /? 2>&1 |")
|| croak "Unable to determine Visual Studio version: The nmake command wasn't found.";
diff --git a/src/tools/pginclude/pgcompinclude b/src/tools/pginclude/pgcompinclude
index 5625f34343..12169db9f6 100755
--- a/src/tools/pginclude/pgcompinclude
+++ b/src/tools/pginclude/pgcompinclude
@@ -17,7 +17,7 @@ do
sed 's/->[a-zA-Z0-9_\.]*//g' "$FILE" >/tmp/$$a
echo "#include \"postgres.h\"" >/tmp/$$.c
- # supress fcinfo errors
+ # suppress fcinfo errors
echo "struct {Datum arg[1];} *fcinfo;" >>/tmp/$$.c
echo "#include \"/tmp/$$a\"" >>/tmp/$$.c
diff --git a/src/tools/pginclude/pgrminclude b/src/tools/pginclude/pgrminclude
index 75a7c6d5c7..383c5044bd 100755
--- a/src/tools/pginclude/pgrminclude
+++ b/src/tools/pginclude/pgrminclude
@@ -90,7 +90,7 @@ compile_file() {
if [ "$IS_INCLUDE" = "Y" ]
then echo "#include \"postgres.h\"" >/tmp/$$.c
- # supress fcinfo errors
+ # suppress fcinfo errors
echo "struct {Datum arg[1];} *fcinfo;" >>/tmp/$$.c
else >/tmp/$$.c
fi