diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
commit | e4704001ea4c3d63b53e8783859ff598ef2f69e5 (patch) | |
tree | 56d282d342ead04fc43af4efc5a2eccffa3e27ed /src/interfaces/python/pgmodule.c | |
parent | 081fa240a119b67e28227439a3bf700340442787 (diff) | |
download | postgresql-e4704001ea4c3d63b53e8783859ff598ef2f69e5.tar.gz postgresql-e4704001ea4c3d63b53e8783859ff598ef2f69e5.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c index c14c57011dd..f0194ed0e17 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); |