diff --git a/doc/TODO b/doc/TODO
index 21aa2bcfbf2..3ae932fb68d 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -53,7 +53,7 @@ PARSER
* SELECT COUNT('asdf') FROM pg_class WHERE oid=12 crashes
* SELECT DISTINCT ON col1 col1 col2 FROM tab1 is broken [distinct]
* -When using aggregates + GROUP BY, no rows in should yield no rows out(Tom)
-* Allow HAVING to use comparisons that have no aggregates, for portability
+* -Allow HAVING to use comparisons that have no aggregates(Tom)
VIEWS
diff --git a/doc/src/sgml/ref/create_user.sgml b/doc/src/sgml/ref/create_user.sgml
index 2fb2c24eb11..b7a55d05d48 100644
--- a/doc/src/sgml/ref/create_user.sgml
+++ b/doc/src/sgml/ref/create_user.sgml
@@ -1,5 +1,5 @@
@@ -249,7 +249,7 @@ CREATE USER jonathan
Create a user with a password:
-CREATE USER davide WITH PASSWORD jw8s0F4
+CREATE USER davide WITH PASSWORD "jw8s0F4"
@@ -259,7 +259,7 @@ CREATE USER davide WITH PASSWORD jw8s0F4
valid:
-CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
+CREATE USER miriam WITH PASSWORD "jw8s0F4" VALID UNTIL 'Jan 1 2002'
@@ -267,7 +267,7 @@ CREATE USER miriam WITH PASSWORD jw8s0F4 VALID UNTIL 'Jan 1 2002'
Create an account where the user can create databases:
-CREATE USER manuel WITH PASSWORD jw8s0F4 CREATEDB
+CREATE USER manuel WITH PASSWORD "jw8s0F4" CREATEDB