1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/create_type.sgml,v 1.73 2007/10/29 17:29:59 momjian Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/create_type.sgml,v 1.74 2008/05/27 18:05:13 tgl Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -196,7 +196,7 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
196
196
attached to a type declaration, such as <literal>char(5)</> or
197
197
<literal>numeric(30,2)</>. <productname>PostgreSQL</productname> allows
198
198
user-defined types to take one or more simple constants or identifiers as
199
- modifiers; however , this information must be capable of being packed into a
199
+ modifiers. However , this information must be capable of being packed into a
200
200
single non-negative integer value for storage in the system catalogs. The
201
201
<replaceable class="parameter">type_modifier_input_function</replaceable>
202
202
is passed the declared modifier(s) in the form of a <type>cstring</>
@@ -212,8 +212,8 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
212
212
function might return <literal>(30,2)</>.
213
213
It is allowed to omit the
214
214
<replaceable class="parameter">type_modifier_output_function</replaceable>,
215
- in which case the default display format is just the stored typmod value
216
- enclosed in parentheses.
215
+ in which case the default display format is just the stored typmod integer
216
+ value enclosed in parentheses.
217
217
</para>
218
218
219
219
<para>
@@ -433,7 +433,7 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
433
433
<term><replaceable class="parameter">type_modifier_input_function</replaceable></term>
434
434
<listitem>
435
435
<para>
436
- The name of a function that converts numeric modifier(s) for the type
436
+ The name of a function that converts an array of modifier(s) for the type
437
437
into internal form.
438
438
</para>
439
439
</listitem>
0 commit comments