diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-12-11 20:13:53 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-12-11 20:13:53 +0000 |
commit | d87e109b88b3e44683cf602c2ef168eff1464507 (patch) | |
tree | e915387375be4704e8434ff7ce5df9de7aa23a64 /doc/src | |
parent | 60425f39c3234e909d0a9dcd9ebe227ec4ab4bc7 (diff) |
Make some wording consistent with DROP OPERATOR description.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_operator.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml index 3acb05d0d32..1001b8f33fb 100644 --- a/doc/src/sgml/ref/create_operator.sgml +++ b/doc/src/sgml/ref/create_operator.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.40 2003/11/29 19:51:38 pgsql Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.41 2003/12/11 20:13:53 petere Exp $ PostgreSQL documentation --> @@ -133,7 +133,7 @@ CREATE OPERATOR <replaceable>name</replaceable> ( <term><replaceable class="parameter">lefttype</replaceable></term> <listitem> <para> - The type of the left-hand argument of the operator, if any. + The data type of the operator's left operand, if any. This option would be omitted for a left-unary operator. </para> </listitem> @@ -143,7 +143,7 @@ CREATE OPERATOR <replaceable>name</replaceable> ( <term><replaceable class="parameter">righttype</replaceable></term> <listitem> <para> - The type of the right-hand argument of the operator, if any. + The data type of the operator's right operand, if any. This option would be omitted for a right-unary operator. </para> </listitem> |