public inbox for [email protected]
help / color / mirror / Atom feedFrom: Erik Rijkers <[email protected]>
To: [email protected]
Subject: readability tutorial example in pdf
Date: Sat, 4 May 2013 23:00:26 +0200
Message-ID: <[email protected]> (raw)
List-Unsubscribe: <mailto:[email protected]?body=unsub%20pgsql-docs>
The attached patch breaks code-example into two lines.
In the pdf (A4) version this line is truncated by several words, making a tutorial example
incomprehensible.
(The line-break also shows up in the html vrsion but does not look particularly ugly there)
Thanks,
Erik Rijkers
--
Sent via pgsql-docs mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs
Attachments:
[application/octet-stream] advanced.sgml.diff (485B, 2-advanced.sgml.diff)
download | inline diff:
--- doc/src/sgml/advanced.sgml.orig 2013-05-04 22:13:15.965966753 +0200
+++ doc/src/sgml/advanced.sgml 2013-05-04 22:39:51.718539936 +0200
@@ -389,7 +389,8 @@
order in which the rows are output.) Here is an example:
<programlisting>
-SELECT depname, empno, salary, rank() OVER (PARTITION BY depname ORDER BY salary DESC) FROM empsalary;
+SELECT depname, empno, salary,
+ rank() OVER (PARTITION BY depname ORDER BY salary DESC) FROM empsalary;
</programlisting>
<screen>
view thread (2+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: readability tutorial example in pdf
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox