diff options
author | Bruce Momjian <bruce@momjian.us> | 2018-11-26 19:41:18 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2018-11-26 19:41:21 -0500 |
commit | 6427bfb9066b63b76928d663812044e23fc15820 (patch) | |
tree | a6a0cfa75a250c87d1a0144db8c0718141685b55 | |
parent | 74bfb5388da84541e4df2d6533f2d5cfe665d5fe (diff) |
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 366179395f4..bd72aa36d0c 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -4826,7 +4826,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</> to <application>PL/pgSQL</application> are: |