[Python-checkins] peps: Fix percentage markers in PEP 485 per Chris Barker's edits
chris.angelico
python-checkins at python.org
Mon Jan 26 17:05:30 CET 2015
https://hg.python.org/peps/rev/87a26df775d2
changeset: 5680:87a26df775d2
user: Chris Angelico <rosuav at gmail.com>
date: Tue Jan 27 03:04:55 2015 +1100
summary:
Fix percentage markers in PEP 485 per Chris Barker's edits
files:
pep-0485.txt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pep-0485.txt b/pep-0485.txt
--- a/pep-0485.txt
+++ b/pep-0485.txt
@@ -179,11 +179,11 @@
Example:
-For the question: "Is the value of a within x% of b?", Using b to
+For the question: "Is the value of a within 10% of b?", Using b to
scale the percent error clearly defines the result.
However, as this approach is not symmetric, a may be within 10% of b,
-but b is not within x% of a. Consider the case::
+but b is not within 10% of a. Consider the case::
a = 9.0
b = 10.0
--
Repository URL: https://hg.python.org/peps
More information about the Python-checkins
mailing list