diff options
author | Bruce Momjian <bruce@momjian.us> | 2018-11-26 19:41:19 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2018-11-26 19:41:27 -0500 |
commit | ad6dfc6ab3e48126edd38b149134b7311124648b (patch) | |
tree | 7bf5089638153801589ced7f4d4603e3f3abd355 | |
parent | b352cf7a80e0841017ca198f27f9da49d7256739 (diff) | |
download | postgresql-ad6dfc6ab3e48126edd38b149134b7311124648b.tar.gz postgresql-ad6dfc6ab3e48126edd38b149134b7311124648b.zip |
doc: fix wording for plpgsql, add "and"
Reported-by: Anthony Greene
Discussion: https://postgr.es/m/CAPRNmnsSZ4QL75FUjcS8ND_oV+WjgyPbZ4ch2RUwmW6PWzF38w@mail.gmail.com
Backpatch-through: 9.4
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 6c5488d0f76..b4ebb5a0c98 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -5130,7 +5130,7 @@ CREATE FUNCTION <para> <application>PL/pgSQL</application> is similar to PL/SQL in many aspects. It is a block-structured, imperative language, and all - variables have to be declared. Assignments, loops, conditionals + variables have to be declared. Assignments, loops, and conditionals are similar. The main differences you should keep in mind when porting from <application>PL/SQL</application> to <application>PL/pgSQL</application> are: |