aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/libpgtcl/README5
-rw-r--r--src/interfaces/libpq++/README8
-rwxr-xr-xsrc/interfaces/python/tutorial/basics.py2
3 files changed, 7 insertions, 8 deletions
diff --git a/src/interfaces/libpgtcl/README b/src/interfaces/libpgtcl/README
index d2e2d59c798..b17416bf90f 100644
--- a/src/interfaces/libpgtcl/README
+++ b/src/interfaces/libpgtcl/README
@@ -1,6 +1,5 @@
-libpgtcl is a library that implements Tcl commands for front-end
-clients to interact with the Postgres95 backend. See libpgtcl.doc for
-details.
+libpgtcl is a library that implements Tcl commands for front-end clients
+to interact with the PostgreSQL backend. See libpgtcl.doc for details.
For an example of how to build a new tclsh to use libpgtcl, see the
directory ../bin/pgtclsh
diff --git a/src/interfaces/libpq++/README b/src/interfaces/libpq++/README
index cb5d0aeddb1..1332b9633db 100644
--- a/src/interfaces/libpq++/README
+++ b/src/interfaces/libpq++/README
@@ -1,6 +1,6 @@
-This directory contains libpq++, the C++ language interface to POSTGRES95.
+This directory contains libpq++, the C++ language interface to POSTGRESQL.
libpq++ is implemented on of the libpq library. Users would benefit
-from reading the chapter on libpq in the postgres95 users manual
+from reading the chapter on libpq in the PostgreSQL users manual
before using libpq++.
The initial version of this implementation was done by William Wanders
@@ -8,8 +8,8 @@ The initial version of this implementation was done by William Wanders
This is only a preliminary attempt at providing something useful for
people who would like to use C++ to build frontend applications to
-postgres95. The API provided herein is subject to change in later
-versions of postgres95.
+PostgreSQL. The API provided herein is subject to change in later
+versions of PostgreSQL.
For details on how to to use libpq++, see the man page in the man/
subdirectory and the test programs in the examples/ subdirectory.
diff --git a/src/interfaces/python/tutorial/basics.py b/src/interfaces/python/tutorial/basics.py
index b0cd9292df0..bd47611488e 100755
--- a/src/interfaces/python/tutorial/basics.py
+++ b/src/interfaces/python/tutorial/basics.py
@@ -1,6 +1,6 @@
#! /usr/local/bin/python
# basics.py - basic SQL commands tutorial
-# inspired from the Postgres95 tutorial
+# inspired from the PostgreSQL tutorial
# adapted to Python 1995 by Pascal ANDRE
print "__________________________________________________________________"