From: "Marcin Kulisz (kuLa)" <debian@kulisz.net>
Date: Fri, 21 Oct 2016 14:38:00 +0100
Subject: Fixing spelling error caught by lintian

---
 ChangeLog       | 4 ++--
 doc/libpqxx.xml | 2 +-
 src/result.cxx  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6f79619..09a1645 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4315,7 +4315,7 @@
   - Added new header files
  include/pqxx/connection_base, include/pqxx/transaction_base,
  src/tablestream.cxx:
-  - Fix crash closing tablestream on nonexistant table (thx Sean [Rogers?])
+  - Fix crash closing tablestream on nonexistent table (thx Sean [Rogers?])
  include/pqxx/except:
   - Moved exception classes back into pqxx namespace where they belong
 2003-06-14  Jeroen T. Vermeulen <jtv@xs4all.nl>
@@ -4505,7 +4505,7 @@
   - Removed superfluous to_file functions for const char[]
   - Extended test coverage
  include/pqxx/tablereader.h:
-  - Removed nonexistant operator>> versions for Result, string
+  - Removed nonexistent operator>> versions for Result, string
  test/test007.cxx:
   - Test ConnectionItf::SetClientEncoding()
  test/test052.cxx, test/test053.cxx, test/test054.cxx, test/test055.cxx:
diff --git a/doc/libpqxx.xml b/doc/libpqxx.xml
index 1ea6a2f..06f89c3 100644
--- a/doc/libpqxx.xml
+++ b/doc/libpqxx.xml
@@ -1028,7 +1028,7 @@
 	    <function>at</function> is that the latter is guaranteed to perform
 	    bounds-checking, throwing an exception if you pass it an illegal
 	    index value.  With the array index operator you may get slightly
-	    better performance, but attempting to address a nonexistant row or
+	    better performance, but attempting to address a nonexistent row or
 	    field will result in undefined behaviour such as program crashes or
 	    inexplicably strange results.
 	  </para>
diff --git a/src/result.cxx b/src/result.cxx
index fbb52a7..a0c37cf 100644
--- a/src/result.cxx
+++ b/src/result.cxx
@@ -292,7 +292,7 @@ pqxx::oid pqxx::result::column_type(tuple::size_type ColNum) const
   const oid T = PQftype(m_data, int(ColNum));
   if (T == oid_none)
     throw argument_error(
-	"Attempt to retrieve type of nonexistant column " +
+	"Attempt to retrieve type of nonexistent column " +
 	to_string(ColNum) + " of query result");
   return T;
 }
