Skip to content

Commit ffe2d4e

Browse files
committed
Fix typos
1 parent 7ebcfeb commit ffe2d4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

NEWS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
- Recognize __builtins__ as a defined name.
127127
- Improve pyflakes support for python versions 2.3-2.5
128128
- Support for if-else expressions and with statements.
129-
- Warn instead of error on non-existant file paths.
129+
- Warn instead of error on non-existent file paths.
130130
- Check for __future__ imports after other statements.
131131
- Add reporting for some types of import shadowing.
132132
- Improve reporting of unbound locals

pyflakes/messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def __init__(self, filename, loc, names):
110110

111111
class UnusedVariable(Message):
112112
"""
113-
Indicates that a variable has been explicity assigned to but not actually
113+
Indicates that a variable has been explicitly assigned to but not actually
114114
used.
115115
"""
116116
message = 'local variable %r is assigned to but never used'

pyflakes/reporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def unexpectedError(self, filename, msg):
3838

3939
def syntaxError(self, filename, msg, lineno, offset, text):
4040
"""
41-
There was a syntax errror in C{filename}.
41+
There was a syntax error in C{filename}.
4242
4343
@param filename: The path to the file with the syntax error.
4444
@ptype filename: C{unicode}

0 commit comments

Comments
 (0)