Spell check on array patch.
authorBruce Momjian
Tue, 20 Feb 2007 14:54:47 +0000 (14:54 +0000)
committerBruce Momjian
Tue, 20 Feb 2007 14:54:47 +0000 (14:54 +0000)
doc/src/sgml/array.sgml

index 246ca3828123c2ada809cd510f1a7aab79508dee..137d8b34dafeccdc7efc85b5fe40da6086d2f8b8 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  Arrays
@@ -243,10 +243,10 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill';
 (1 row)
 
 
-  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 [1:1].  If a dimmension has only a single
-  number (no colon), that dimmension is treated as being from 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 [1:1].  If a dimension has only a single
+  number (no colon), that dimension is treated as being from 1
   to the number specified.  For example, [2] is treated as
   [1:2], as in this example: