diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-01-16 19:38:22 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-01-16 19:38:22 -0500 |
commit | d8a0b96c50b76992d63287ef9affbcf847f725ad (patch) | |
tree | 085d6e548c38e7d2e64770f4acb85917fb4959b9 /doc/src | |
parent | 93c4bbc9998e7f326a9733fc187a7f2b97ef7b95 (diff) | |
download | postgresql-d8a0b96c50b76992d63287ef9affbcf847f725ad.tar.gz postgresql-d8a0b96c50b76992d63287ef9affbcf847f725ad.zip |
doc: rename "Equals" to "Equal"
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index c100c0e323d..df41cfc1c30 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -343,7 +343,7 @@ arow RECORD; is specified, an assignment of a null value results in a run-time error. All variables declared as <literal>NOT NULL</> must have a nonnull default value specified. - Equals (<literal>=</>) can be used instead of PL/SQL-compliant + Equal (<literal>=</>) can be used instead of PL/SQL-compliant <literal>:=</>. </para> @@ -876,7 +876,7 @@ PREPARE <replaceable>statement_name</>(integer, integer) AS SELECT $1 < $2; a row value, if the variable is a row or record variable). The target variable can be a simple variable (optionally qualified with a block name), a field of a row or record variable, or an element of an array - that is a simple variable or field. Equals (<literal>=</>) can be + that is a simple variable or field. Equal (<literal>=</>) can be used instead of PL/SQL-compliant <literal>:=</>. </para> |