summaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/select_into.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/ref/select_into.sgml')
-rw-r--r--doc/src/sgml/ref/select_into.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/select_into.sgml b/doc/src/sgml/ref/select_into.sgml
index 233f9bfa284..cbf865ff838 100644
--- a/doc/src/sgml/ref/select_into.sgml
+++ b/doc/src/sgml/ref/select_into.sgml
@@ -120,8 +120,8 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="parameter">expression</replac
<title>Examples</title>
<para>
- Create a new table <literal>films_recent</literal> consisting of only
- recent entries from the table <literal>films</literal>:
+ Create a new table <structname>films_recent</structname> consisting of only
+ recent entries from the table <structname>films</structname>:
<programlisting>
SELECT * INTO films_recent FROM films WHERE date_prod &gt;= '2002-01-01';