summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos E. Garcia <carlos@cgarcia.org>2014-04-23 10:52:40 -0400
committerCarlos E. Garcia <carlos@cgarcia.org>2014-04-23 10:52:40 -0400
commit7d23fe9612fbc277df5783be253de8b6bf263f62 (patch)
tree3cfe87d9d82739937b62b002d05437e916b3bc72
parentf4e57cd75e7d949d42be58d59982f2b40bdce989 (diff)
downloadpep8-7d23fe9612fbc277df5783be253de8b6bf263f62.tar.gz
few mispelling errors
-rw-r--r--CHANGES.txt4
-rw-r--r--testsuite/E22.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 59256de..e12f89d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -406,7 +406,7 @@ Bug fixes:
* Fix E901 when printing source with ``--show-source``.
* Report all errors for each checker, instead of reporting only the
- first occurence for each line.
+ first occurrence for each line.
* Option ``--show-pep8`` implies ``--first``.
@@ -440,7 +440,7 @@ Bug fixes:
0.7.0 (2012-03-26)
------------------
-* Now ``--first`` prints only the first occurence of each error.
+* Now ``--first`` prints only the first occurrence of each error.
The ``--repeat`` flag becomes obsolete because it is the default
behaviour. (Issue #6)
diff --git a/testsuite/E22.py b/testsuite/E22.py
index 7617eb8..43a6f3f 100644
--- a/testsuite/E22.py
+++ b/testsuite/E22.py
@@ -120,7 +120,7 @@ a = b%c
#: E228
msg = fmt%(errno, errmsg)
#: E228
-msg = "Error %d occured"%errno
+msg = "Error %d occurred"%errno
#:
#: Okay