diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-02-20 14:54:51 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-02-20 14:54:51 +0000 |
commit | 44764fba1bc63919bf135d84a1a085878a5af23e (patch) | |
tree | 7fd0e197422bb027b1763d2498fc6c372d694004 | |
parent | 0586e9b6825e5c1acbdb0771da74095de518ad28 (diff) | |
download | postgresql-44764fba1bc63919bf135d84a1a085878a5af23e.tar.gz postgresql-44764fba1bc63919bf135d84a1a085878a5af23e.zip |
Spell check on array patch.
-rw-r--r-- | doc/src/sgml/array.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index 7c5442004d5..21f01e4258b 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.52.2.2 2007/02/20 14:34:29 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.52.2.3 2007/02/20 14:54:51 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: |