From: Bruce Momjian Date: Fri, 17 Jan 2014 00:38:22 +0000 (-0500) Subject: doc: rename "Equals" to "Equal" X-Git-Tag: REL9_4_BETA1~671 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8a0b96c50b76992d63287ef9affbcf847f725ad;p=postgresql doc: rename "Equals" to "Equal" --- diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index c100c0e323..df41cfc1c3 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 NOT NULL must have a nonnull default value specified. - Equals (=) can be used instead of PL/SQL-compliant + Equal (=) can be used instead of PL/SQL-compliant :=. @@ -876,7 +876,7 @@ PREPARE 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 (=) can be + that is a simple variable or field. Equal (=) can be used instead of PL/SQL-compliant :=.