[Python-checkins] r77078 - peps/trunk/pep-0345.txt

tarek.ziade python-checkins at python.org
Mon Dec 28 01:13:16 CET 2009


Author: tarek.ziade
Date: Mon Dec 28 01:13:16 2009
New Revision: 77078

Log:
more editing

Modified:
   peps/trunk/pep-0345.txt

Modified: peps/trunk/pep-0345.txt
==============================================================================
--- peps/trunk/pep-0345.txt	(original)
+++ peps/trunk/pep-0345.txt	Mon Dec 28 01:13:16 2009
@@ -128,7 +128,7 @@
 
 To support empty lines and lines with indentation with respect to
 the RFC 822 format, any new line has to be suffixed by 7 spaces
-followed by a pipe (`|`) char. As a result, the Description field is
+followed by a pipe ("|") char. As a result, the Description field is
 encoded into a folded field that can be interpreted by RFC822
 parser [2]_.
 
@@ -143,8 +143,8 @@
             |    3
             |
 
-This encoding implies that any occurences of ``\n |`` have to be replaced
-by ``\n`` when the field is unfolded using a RFC822 reader.
+This encoding implies that any occurences of "\n |" have to be replaced
+by "\n" when the field is unfolded using a RFC822 reader.
 
 
 Keywords (optional)
@@ -410,8 +410,8 @@
 must be one of "<", ">", "<=", ">=", "==", "~=" and "!=".
 
 Any number of conditional operators can be specified, e.g.
-the string ``>1.0, !=1.3.4, <2.0`` is a legal version declaration.
-The comma (``,``) is equivalent to the **or** operator.
+the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
+The comma (",") is equivalent to the **or** operator.
 
 Each version number must be in the format specified in PEP 386.
 
@@ -443,7 +443,7 @@
 ===================
 
 An **environment marker** is a marker that can be added at the end of a
-field after a semi-colon (';'), to add a condition about the execution
+field after a semi-colon (";"), to add a condition about the execution
 environment.
 
 Here are some example of fields using such markers::


More information about the Python-checkins mailing list