]> granicus.if.org Git - postgresql/commitdiff
Fix syntax in extract() examples
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 24 Nov 2009 19:21:04 +0000 (19:21 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 24 Nov 2009 19:21:04 +0000 (19:21 +0000)
Author: Erik Rijkers <er@xs4all.nl>

doc/src/sgml/func.sgml

index 5b363d705b286165586576a7343330a4f98e7135..9a8df8cf4f73567c59f665db6787e5d066067a6f 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.482.2.1 2009/08/16 19:55:28 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.482.2.2 2009/11/24 19:21:04 petere Exp $ -->
 
  <chapter id="functions">
   <title>Functions and Operators</title>
@@ -5251,9 +5251,9 @@ SELECT SUBSTRING('XY1234Z', 'Y*?([0-9]{1,3})');
      <listitem>
       <para>
         <function>to_char(..., 'ID')</function>'s day of the week numbering
-        matches the <function>extract('isodow', ...)</function> function, but
+        matches the <function>extract(isodow from ...)</function> function, but
         <function>to_char(..., 'D')</function>'s does not match
-        <function>extract('dow', ...)</function>'s day numbering.
+        <function>extract(dow from ...)</function>'s day numbering.
       </para>
      </listitem>