aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-10-26 18:04:13 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2011-10-26 18:04:13 -0400
commitbf82013631e32436c9abb23fee8be0a4ce46b3dd (patch)
tree114b22ef50a5a43cd000b1d07af6c20b4ba766c3
parent3e4b3465b6345b75659e8f897976d4c810408762 (diff)
downloadpostgresql-bf82013631e32436c9abb23fee8be0a4ce46b3dd.tar.gz
postgresql-bf82013631e32436c9abb23fee8be0a4ce46b3dd.zip
Typo fixes.
expect -> except, noted by Andrew Dunstan. Also, "cannot" seems more readable here than "can not", per David Wheeler.
-rw-r--r--doc/src/sgml/func.sgml16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 8dd69337f11..2b8298c3e0c 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -15024,8 +15024,8 @@ SELECT (pg_stat_file('filename')).modification;
</indexterm>
<para>
<function>pg_advisory_xact_lock</> works the same as
- <function>pg_advisory_lock</>, expect the lock is automatically released
- at the end of the current transaction and can not be released explicitly.
+ <function>pg_advisory_lock</>, except the lock is automatically released
+ at the end of the current transaction and cannot be released explicitly.
</para>
<indexterm>
@@ -15033,8 +15033,8 @@ SELECT (pg_stat_file('filename')).modification;
</indexterm>
<para>
<function>pg_advisory_xact_lock_shared</> works the same as
- <function>pg_advisory_lock_shared</>, expect the lock is automatically released
- at the end of the current transaction and can not be released explicitly.
+ <function>pg_advisory_lock_shared</>, except the lock is automatically released
+ at the end of the current transaction and cannot be released explicitly.
</para>
<indexterm>
@@ -15042,9 +15042,9 @@ SELECT (pg_stat_file('filename')).modification;
</indexterm>
<para>
<function>pg_try_advisory_xact_lock</> works the same as
- <function>pg_try_advisory_lock</>, expect the lock, if acquired,
+ <function>pg_try_advisory_lock</>, except the lock, if acquired,
is automatically released at the end of the current transaction and
- can not be released explicitly.
+ cannot be released explicitly.
</para>
<indexterm>
@@ -15052,9 +15052,9 @@ SELECT (pg_stat_file('filename')).modification;
</indexterm>
<para>
<function>pg_try_advisory_xact_lock_shared</> works the same as
- <function>pg_try_advisory_lock_shared</>, expect the lock, if acquired,
+ <function>pg_try_advisory_lock_shared</>, except the lock, if acquired,
is automatically released at the end of the current transaction and
- can not be released explicitly.
+ cannot be released explicitly.
</para>
<indexterm>