Title: [1016] trunk/docs/contents/pg: Fix three more typos in the documentation.
Revision
1016
Author
cito
Date
2019-06-16 03:37:00 -0400 (Sun, 16 Jun 2019)

Log Message

Fix three more typos in the documentation.

As suggested by Justin Pryzby on the mailing list.

Modified Paths

Diff

Modified: trunk/docs/contents/pg/adaptation.rst (1015 => 1016)


--- trunk/docs/contents/pg/adaptation.rst	2019-06-07 17:16:43 UTC (rev 1015)
+++ trunk/docs/contents/pg/adaptation.rst	2019-06-16 07:37:00 UTC (rev 1016)
@@ -179,8 +179,8 @@
 Also note that the query gives the value back as Python lists again.  This
 is achieved by the typecasting mechanism explained in the next section.
 
-Tuples are adapted as PostgreSQL composite types.  If you use inline paramters,
-they can also be used with the ``IN`` syntax.
+Tuples are adapted as PostgreSQL composite types.  If you use inline
+parameters, they can also be used with the ``IN`` syntax.
 
 Let's think of a more real world example again where we create a table with a
 composite type in PostgreSQL:

Modified: trunk/docs/contents/pg/db_wrapper.rst (1015 => 1016)


--- trunk/docs/contents/pg/db_wrapper.rst	2019-06-07 17:16:43 UTC (rev 1015)
+++ trunk/docs/contents/pg/db_wrapper.rst	2019-06-16 07:37:00 UTC (rev 1016)
@@ -101,7 +101,7 @@
 ``s`` = special, ``t`` = TOAST table.  If `kinds` is None or an empty string,
 all relations are returned (this is also the default).  If `system` is set to
 `True`, then system tables and views (temporary tables, toast tables, catalog
-vies and tables) will be returned as well, otherwise they will be ignored.
+views and tables) will be returned as well, otherwise they will be ignored.
 
 get_tables -- get list of tables in connected database
 ------------------------------------------------------

Modified: trunk/docs/contents/pg/module.rst (1015 => 1016)


--- trunk/docs/contents/pg/module.rst	2019-06-07 17:16:43 UTC (rev 1015)
+++ trunk/docs/contents/pg/module.rst	2019-06-16 07:37:00 UTC (rev 1016)
@@ -599,7 +599,7 @@
 cast_array/record -- fast parsers for arrays and records
 --------------------------------------------------------
 
-PosgreSQL returns arrays and records (composite types) using a special output
+PostgreSQL returns arrays and records (composite types) using a special output
 syntax with several quirks that cannot easily and quickly be parsed in Python.
 Therefore the C extension module provides two fast parsers that allow quickly
 turning these text representations into Python objects: Arrays will be
_______________________________________________
PyGreSQL mailing list
PyGreSQL@Vex.Net
https://mail.vex.net/mailman/listinfo/pygresql

Reply via email to