diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-06-07 00:08:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-06-07 00:08:02 -0400 |
commit | 7b1e893acd4b7637de93631781f82e0f6834b621 (patch) | |
tree | 3ce6dc9cea4a31c3e564cad3de12262d9027f9a5 /doc/src | |
parent | 58617e4dc131561f4b6ba492d6a404b05bd0b968 (diff) | |
download | postgresql-7b1e893acd4b7637de93631781f82e0f6834b621.tar.gz postgresql-7b1e893acd4b7637de93631781f82e0f6834b621.zip |
Minor docs wordsmithing.
Swap the order of a couple of phrases to clarify what the adjective
"subsequent" applies to.
Joshua Tolley
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/select.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 213ea096119..68309ba94da 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -654,8 +654,8 @@ HAVING <replaceable class="parameter">condition</replaceable> WINDOW <replaceable class="parameter">window_name</replaceable> AS ( <replaceable class="parameter">window_definition</replaceable> ) [, ...] </synopsis> where <replaceable class="parameter">window_name</replaceable> is - a name that can be referenced from subsequent window definitions or - <literal>OVER</> clauses, and + a name that can be referenced from <literal>OVER</> clauses or + subsequent window definitions, and <replaceable class="parameter">window_definition</replaceable> is <synopsis> [ <replaceable class="parameter">existing_window_name</replaceable> ] |