aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-09-10 02:46:18 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-09-10 02:46:18 +0000
commitaa398e5034940d8be2a87d5a394c0c91269e39e5 (patch)
tree7a07340e6ce64c3aed47bbb0426bb240b3f2b62e /doc/src
parent98d04116d3ea165cdee8bd796a5a3eb646e7f433 (diff)
downloadpostgresql-aa398e5034940d8be2a87d5a394c0c91269e39e5.tar.gz
postgresql-aa398e5034940d8be2a87d5a394c0c91269e39e5.zip
Add missing ';'
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/func.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 55294ccfb75..89a9bd1f8eb 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.70 2001/09/09 17:21:58 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.71 2001/09/10 02:46:18 ishii Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@@ -2769,7 +2769,7 @@ date_part('<replaceable>field</replaceable>', <replaceable>source</replaceable>)
SELECT date_part('day', TIMESTAMP '2001-02-16 20:38:40');
<lineannotation>Result: </lineannotation><computeroutput>16</computeroutput>
-SELECT date_part('hour', INTERVAL '4 hours 3 minutes')
+SELECT date_part('hour', INTERVAL '4 hours 3 minutes');
<lineannotation>Result: </lineannotation><computeroutput>4</computeroutput>
</screen>
</informalexample>