From: Tom Lane Date: Wed, 26 Oct 2011 22:04:13 +0000 (-0400) Subject: Typo fixes. X-Git-Tag: REL9_2_BETA1~928 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf82013631e32436c9abb23fee8be0a4ce46b3dd;p=postgresql Typo fixes. expect -> except, noted by Andrew Dunstan. Also, "cannot" seems more readable here than "can not", per David Wheeler. --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 8dd69337f1..2b8298c3e0 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -15024,8 +15024,8 @@ SELECT (pg_stat_file('filename')).modification; pg_advisory_xact_lock works the same as - pg_advisory_lock, expect the lock is automatically released - at the end of the current transaction and can not be released explicitly. + pg_advisory_lock, except the lock is automatically released + at the end of the current transaction and cannot be released explicitly. @@ -15033,8 +15033,8 @@ SELECT (pg_stat_file('filename')).modification; pg_advisory_xact_lock_shared works the same as - pg_advisory_lock_shared, expect the lock is automatically released - at the end of the current transaction and can not be released explicitly. + pg_advisory_lock_shared, except the lock is automatically released + at the end of the current transaction and cannot be released explicitly. @@ -15042,9 +15042,9 @@ SELECT (pg_stat_file('filename')).modification; pg_try_advisory_xact_lock works the same as - pg_try_advisory_lock, expect the lock, if acquired, + 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. @@ -15052,9 +15052,9 @@ SELECT (pg_stat_file('filename')).modification; pg_try_advisory_xact_lock_shared works the same as - pg_try_advisory_lock_shared, expect the lock, if acquired, + 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.