aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2012-05-19 14:42:47 +0200
committerMichael Meskes <meskes@postgresql.org>2012-05-19 14:44:56 +0200
commitc1ba858c6d49ae100f6e343932aa99c7a61e3f06 (patch)
treec6728073c47147f22a363eb5c59b2972133f0c7b /doc/src
parent2273a50364cf4a098d7ee4b5aa7e88c5cc5777ad (diff)
downloadpostgresql-c1ba858c6d49ae100f6e343932aa99c7a61e3f06.tar.gz
postgresql-c1ba858c6d49ae100f6e343932aa99c7a61e3f06.zip
Reworded sentence as suggested by Stephen Frost.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_type.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml
index 7d87a67b3f1..d822037e4cb 100644
--- a/doc/src/sgml/ref/create_type.sgml
+++ b/doc/src/sgml/ref/create_type.sgml
@@ -465,8 +465,8 @@ CREATE TYPE <replaceable class="parameter">name</replaceable>
identical things, and you want to allow these things to be accessed
directly by subscripting, in addition to whatever operations you plan
to provide for the type as a whole. For example, type <type>point</>
- is represented as just two floating-point numbers, which it allows to be
- accessed as <literal>point[0]</> and <literal>point[1]</>.
+ is represented as just two floating-point numbers, each can be accessed using
+ <literal>point[0]</> and <literal>point[1]</>.
Note that
this facility only works for fixed-length types whose internal form
is exactly a sequence of identical fixed-length fields. A subscriptable