From: Tom Lane Date: Fri, 2 Mar 2007 06:01:01 +0000 (+0000) Subject: Fix broken markup, improve wording. X-Git-Tag: REL8_3_BETA1~1091 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50acd427a5e84281c781f59b542e826a5fb36b5b;p=postgresql Fix broken markup, improve wording. --- diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index 137d8b34da..74e9e083f7 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ - + Arrays @@ -243,12 +243,11 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill'; (1 row) - 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 + If any dimension is written as a slice, i.e. contains a colon, then all + dimensions are treated as slices. Any dimension that has only a single + number (no colon) is treated as being from 1 to the number specified. For example, [2] is treated as - [1:2], as in this example: + [1:2], as in this example: SELECT schedule[1:2][2] FROM sal_emp WHERE name = 'Bill';