From d8a0b96c50b76992d63287ef9affbcf847f725ad Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 16 Jan 2014 19:38:22 -0500 Subject: [PATCH] doc: rename "Equals" to "Equal" --- doc/src/sgml/plpgsql.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 :=. -- GitLab