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

Commit e38664a

Browse files
committed
Add semicolon
Tatsuo Ishii
1 parent 479cba8 commit e38664a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/src/sgml/ref/create_user.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.19 2001/09/03 12:57:49 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.20 2001/09/14 08:24:29 ishii Exp $
33
Postgres documentation
44
-->
55

@@ -207,7 +207,7 @@ CREATE USER jonathan
207207
<para>
208208
Create a user with a password:
209209
<programlisting>
210-
CREATE USER davide WITH PASSWORD 'jw8s0F4'
210+
CREATE USER davide WITH PASSWORD 'jw8s0F4';
211211
</programlisting>
212212
</para>
213213

@@ -217,14 +217,14 @@ CREATE USER davide WITH PASSWORD 'jw8s0F4'
217217
valid:
218218

219219
<programlisting>
220-
CREATE USER miriam WITH PASSWORD 'jw8s0F4' VALID UNTIL 'Jan 1 2002'
220+
CREATE USER miriam WITH PASSWORD 'jw8s0F4' VALID UNTIL 'Jan 1 2002';
221221
</programlisting>
222222
</para>
223223

224224
<para>
225225
Create an account where the user can create databases:
226226
<programlisting>
227-
CREATE USER manuel WITH PASSWORD 'jw8s0F4' CREATEDB
227+
CREATE USER manuel WITH PASSWORD 'jw8s0F4' CREATEDB;
228228
</programlisting>
229229
</para>
230230
</refsect1>

0 commit comments

Comments
 (0)