diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index 77a2ae8f916..787ae32602a 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
@@ -851,7 +851,7 @@ lo_import 152801
The second argument is a string that should be printed whenever a field
is null. The default is not to print anything, which can easily be mistaken
for, say, an empty string. Thus, one might choose to write
- \pset null "(null)".
+ \pset null '(null)'.
@@ -863,8 +863,8 @@ lo_import 152801
Specifies the field separator to be used in unaligned output mode. That way
one can create, for example, tab- or comma-separated output, which other
programs might prefer. To set a tab as field separator, type
- \pset fieldsep "\t". The default field separator is
- |
(a pipe
symbol).
+ \pset fieldsep '\t'. The default field separator is
+ '|' (a pipe
symbol).
@@ -2151,8 +2151,8 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
Notice the changing prompt.
testdb=> CREATE TABLE my_table (
-testdb-> first integer not null default 0,
-testdb-> second text
+testdb(> first integer not null default 0,
+testdb(> second text
testdb-> );
CREATE