summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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