summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorRobert Haas2012-04-24 02:43:09 +0000
committerRobert Haas2012-04-24 02:43:09 +0000
commit5d4b60f2f25bedee257aaf6f2f4ac77028629b87 (patch)
treef0f7fa40b63a23b10e9d03ea47f97020565a66f6 /src/tools
parent7ab9b2f3b79177e501a1ef90ed004cc68788abaf (diff)
Lots of doc corrections.
Josh Kupershmidt
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 19945f8661b..eb4978bfe04 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 ad0eca3672b..bbadb34829c 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 44db1f6814c..3bed9229918 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 5625f34343f..12169db9f64 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 75a7c6d5c70..383c5044bd7 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