Typo pointed out by Erwin Brandstetter. Remove the whole makes it even
authorMagnus Hagander
Tue, 11 Dec 2007 18:30:20 +0000 (18:30 +0000)
committerMagnus Hagander
Tue, 11 Dec 2007 18:30:20 +0000 (18:30 +0000)
better, per JD.

doc/src/sgml/syntax.sgml

index a869cd440aa849a945c982ccd80a0edabc831274..c49d81b7f90935827ac9121dff21fb8979884200 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  SQL Syntax
@@ -1748,7 +1748,7 @@ SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END;
 
     A 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
     y > 1.5*x instead.)