]> granicus.if.org Git - postgresql/commitdiff
Eliminate trivial whitespace inconsistency in docs sample code.
authorKevin Grittner <kgrittn@postgresql.org>
Thu, 21 Mar 2013 15:34:47 +0000 (10:34 -0500)
committerKevin Grittner <kgrittn@postgresql.org>
Thu, 21 Mar 2013 15:34:47 +0000 (10:34 -0500)
doc/src/sgml/rules.sgml

index 68a0f53445f76464c23216d2b5f75a55374693eb..311fc8b0a1851e4f504c09c3036868abf6d685a5 100644 (file)
@@ -1002,13 +1002,13 @@ REFRESH MATERIALIZED VIEW sales_summary;
 
 <programlisting>
 CREATE EXTENSION file_fdw;
-CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw ;
+CREATE SERVER local_file FOREIGN DATA WRAPPER file_fdw;
 CREATE FOREIGN TABLE words (word text NOT NULL)
   SERVER local_file
   OPTIONS (filename '/etc/dictionaries-common/words');
 CREATE MATERIALIZED VIEW wrd AS SELECT * FROM words;
 CREATE UNIQUE INDEX wrd_word ON wrd (word);
-CREATE EXTENSION pg_trgm ;
+CREATE EXTENSION pg_trgm;
 CREATE INDEX wrd_trgm ON wrd USING gist (word gist_trgm_ops);
 VACUUM ANALYZE wrd;
 </programlisting>