summaryrefslogtreecommitdiff
path: root/src/interfaces/python/pgmodule.c
diff options
context:
space:
mode:
authorTom Lane2003-03-10 22:28:22 +0000
committerTom Lane2003-03-10 22:28:22 +0000
commitc962644473600e7dab4a5ee1596593cf9f95cfca (patch)
tree4c378495a1c62cdae92bfc7e4a66e29a75004363 /src/interfaces/python/pgmodule.c
parent4722fc5519e6a43632fd01b567e766e4472a941f (diff)
This patch fixes a bunch of spelling mistakes in comments throughout the
PostgreSQL source code. Neil Conway
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
-rw-r--r--src/interfaces/python/pgmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c
index c14c57011d..f0194ed0e1 100644
--- a/src/interfaces/python/pgmodule.c
+++ b/src/interfaces/python/pgmodule.c
@@ -1498,7 +1498,7 @@ pgconnect(pgobject * self, PyObject * args, PyObject * dict)
return NULL;
#ifdef DEFAULT_VARS
- /* handles defaults variables (for unintialised vars) */
+ /* handles defaults variables (for uninitialised vars) */
if ((!pghost) && (pg_default_host != Py_None))
pghost = PyString_AsString(pg_default_host);