Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6706194

Browse files
committed
Fix psql quotes in docs.
1 parent 3b5338d commit 6706194

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/src/sgml/ref/psql-ref.sgml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.31 2000/04/16 15:46:39 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.32 2000/05/09 18:55:56 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -851,7 +851,7 @@ lo_import 152801
851851
The second argument is a string that should be printed whenever a field
852852
is null. The default is not to print anything, which can easily be mistaken
853853
for, say, an empty string. Thus, one might choose to write
854-
<literal>\pset null "(null)"</literal>.
854+
<literal>\pset null '(null)'</literal>.
855855
</para>
856856
</listitem>
857857
</varlistentry>
@@ -863,8 +863,8 @@ lo_import 152801
863863
Specifies the field separator to be used in unaligned output mode. That way
864864
one can create, for example, tab- or comma-separated output, which other
865865
programs might prefer. To set a tab as field separator, type
866-
<literal>\pset fieldsep "\t"</literal>. The default field separator is
867-
<quote><literal>|</literal></quote> (a <quote>pipe</quote> symbol).
866+
<literal>\pset fieldsep '\t'</literal>. The default field separator is
867+
<literal>'|'</literal> (a <quote>pipe</quote> symbol).
868868
</para>
869869
</listitem>
870870
</varlistentry>
@@ -2151,8 +2151,8 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
21512151
Notice the changing prompt.
21522152
<programlisting>
21532153
testdb=> <userinput>CREATE TABLE my_table (</userinput>
2154-
testdb-> <userinput> first integer not null default 0,</userinput>
2155-
testdb-> <userinput> second text</userinput>
2154+
testdb(> <userinput> first integer not null default 0,</userinput>
2155+
testdb(> <userinput> second text</userinput>
21562156
testdb-> <userinput>);</userinput>
21572157
CREATE
21582158
</programlisting>

0 commit comments

Comments
 (0)