aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-09-12 01:22:25 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-09-12 01:22:25 +0000
commit7dc4a45ae7cf3f3ec5f9e54c5c19efacc8e7abdc (patch)
tree9adf21db9292e4e20a00430213e49eacac21748c /doc/src
parent9b35cce9ee511e4e335eaddd737d16d9d85379b1 (diff)
downloadpostgresql-7dc4a45ae7cf3f3ec5f9e54c5c19efacc8e7abdc.tar.gz
postgresql-7dc4a45ae7cf3f3ec5f9e54c5c19efacc8e7abdc.zip
Fix typo.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/rules.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/rules.sgml b/doc/src/sgml/rules.sgml
index eafc2b29afc..8bd452c95d3 100644
--- a/doc/src/sgml/rules.sgml
+++ b/doc/src/sgml/rules.sgml
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/rules.sgml,v 1.15 2001/09/10 21:58:47 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/rules.sgml,v 1.16 2001/09/12 01:22:25 ishii Exp $ -->
<Chapter Id="rules">
<Title>The <ProductName>Postgres</ProductName> Rule System</Title>
@@ -1395,7 +1395,7 @@
at the current data,
<ProgramListing>
- al_bundy=> SELECT * FROM shoelace ORDER BY sl_name;
+ al_bundy=> SELECT * FROM shoelace;
sl_name |sl_avail|sl_color |sl_len|sl_unit |sl_len_cm
----------+--------+----------+------+--------+---------
sl1 | 5|black | 80|cm | 80
@@ -1832,7 +1832,7 @@ Merge Join
<ProgramListing>
CREATE TABLE computer (
- hostname text -- indexed
+ hostname text, -- indexed
manufacturer text -- indexed
);