diff options
-rw-r--r-- | doc/src/sgml/libpq.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 8 | ||||
-rw-r--r-- | doc/src/sgml/runtime.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/xfunc.sgml | 9 |
4 files changed, 14 insertions, 12 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 34ab2bb59f8..843e96be883 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.88 2002/03/04 23:59:11 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.89 2002/03/11 05:03:51 petere Exp $ --> <chapter id="libpq"> @@ -964,7 +964,7 @@ strings overlap. unsigned char *PQunescapeBytea(unsigned char *from, size_t *to_length); </synopsis> - The <paramater>from</parameter> parameter points to an escaped string + The <parameter>from</parameter> parameter points to an escaped string such as might be returned by <function>PQgetvalue</function> of a <type>BYTEA</type> column. <function>PQunescapeBytea</function> converts this NUL terminated string representation into binary, filling a buffer. diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 0d84d01b7ca..84f783392e6 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.62 2002/03/05 00:00:58 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.63 2002/03/11 05:03:52 petere Exp $ PostgreSQL documentation --> @@ -1120,12 +1120,12 @@ lo_import 152801 <varlistentry> - <term><literal>\timing</literal> + <term><literal>\timing</literal></term> <listitem> <para> - Toggles a display of how long each query takes in seconds. + Toggles a display of how long each query takes in seconds. </para> - </listitem> + </listitem> </varlistentry> diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index c43af2ec9b6..fc840a2ae6c 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.107 2002/03/09 05:11:37 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.108 2002/03/11 05:03:51 petere Exp $ --> <Chapter Id="runtime"> @@ -1120,7 +1120,7 @@ env PGOPTIONS='-c geqo=off' psql Each SQL transaction has an isolation level, which can be either <quote>read committed</quote> or <quote>serializable</quote>. This parameter controls the default isolation level of each new - transaction. The default is <quote>read committed/quote>. + transaction. The default is <quote>read committed</quote>. </para> <para> @@ -2094,6 +2094,7 @@ options SEMMAP=256 You may also want to use the <application>sysctl</> setting to lock shared memory into RAM and prevent it from being paged out to swap. + </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 94c664cbce1..73c0287d446 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.48 2002/03/05 05:33:00 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.49 2002/03/11 05:03:52 petere Exp $ --> <chapter id="xfunc"> @@ -1319,10 +1319,11 @@ concat_text(PG_FUNCTION_ARGS) value be returned. These routines provide more efficient access to parts of large values in the case where they have storage type "external". (The storage type of a column can be specified using - <command>ALTER TABLE <repaceable>tablename</replaceable> ALTER + <literal>ALTER TABLE <replaceable>tablename</replaceable> ALTER COLUMN <replaceable>colname</replaceable> SET STORAGE - <replaceable>storagetype</replaceable>. Storage type is one of - plain, external, extended or main.) + <replaceable>storagetype</replaceable></literal>. Storage type is one of + <literal>plain</>, <literal>external</>, <literal>extended</literal>, + or <literal>main</>.) </para> <para> |