aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-02-20 14:54:47 +0000
committerBruce Momjian <bruce@momjian.us>2007-02-20 14:54:47 +0000
commitff0d71e2630a059046ea2d7f487fbcdea1d8053b (patch)
tree59b9e260e5509d63007d29aaf84d66213779a1fb
parentbfc53d7da4248f7ae7952156f242f0fca1b7dfaa (diff)
downloadpostgresql-ff0d71e2630a059046ea2d7f487fbcdea1d8053b.tar.gz
postgresql-ff0d71e2630a059046ea2d7f487fbcdea1d8053b.zip
Spell check on array patch.
-rw-r--r--doc/src/sgml/array.sgml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml
index 246ca382812..137d8b34daf 100644
--- a/doc/src/sgml/array.sgml
+++ b/doc/src/sgml/array.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.57 2007/02/20 14:34:25 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.58 2007/02/20 14:54:47 momjian Exp $ -->
<sect1 id="arrays">
<title>Arrays</title>
@@ -243,10 +243,10 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill';
(1 row)
</programlisting>
- If any dimmension is written as a slice, i.e contains a colon, then all
- dimmensions are treated as slices. If a dimmension is missing, it is
- assumed to be <literal>[1:1]</>. If a dimmension has only a single
- number (no colon), that dimmension is treated as being from <literal>1</>
+ If any dimension is written as a slice, i.e contains a colon, then all
+ dimensions are treated as slices. If a dimension is missing, it is
+ assumed to be <literal>[1:1]</>. If a dimension has only a single
+ number (no colon), that dimension is treated as being from <literal>1</>
to the number specified. For example, <literal>[2]</> is treated as
<literal>[1:2], as in this example: