aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-12-11 18:30:20 +0000
committerMagnus Hagander <magnus@hagander.net>2007-12-11 18:30:20 +0000
commit3a7211aaf782ce56082720b741440e345cb711c6 (patch)
tree06af6dc181c249460806f2f1024b5a3afe2fe4d0
parent3bf66d6f1c3a8d266c3e6ed939e763a001179faf (diff)
downloadpostgresql-3a7211aaf782ce56082720b741440e345cb711c6.tar.gz
postgresql-3a7211aaf782ce56082720b741440e345cb711c6.zip
Typo pointed out by Erwin Brandstetter. Remove the whole makes it even
better, per JD.
-rw-r--r--doc/src/sgml/syntax.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml
index a869cd440aa..c49d81b7f90 100644
--- a/doc/src/sgml/syntax.sgml
+++ b/doc/src/sgml/syntax.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.119 2007/06/05 21:31:04 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.120 2007/12/11 18:30:20 mha Exp $ -->
<chapter id="sql-syntax">
<title>SQL Syntax</title>
@@ -1748,7 +1748,7 @@ SELECT ... WHERE CASE WHEN x &lt;&gt; 0 THEN y/x &gt; 1.5 ELSE false END;
</programlisting>
A <literal>CASE</> construct used in this fashion will defeat optimization
attempts, so it should only be done when necessary. (In this particular
- example, it would doubtless be best to sidestep the problem by writing
+ example, it would be best to sidestep the problem by writing
<literal>y &gt; 1.5*x</> instead.)
</para>
</sect2>