summaryrefslogtreecommitdiff
path: root/src/flake8
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2018-12-31 22:26:21 -0800
committerAnthony Sottile <asottile@umich.edu>2018-12-31 22:26:21 -0800
commit8dc2885d94cf6d5def48e392d0a9cf26c6cf678e (patch)
tree8e9f4c509793b3e600f96773f9bcf7248900c599 /src/flake8
parenta1532441917ab9ea70838903095ffe1d802e541c (diff)
downloadflake8-8dc2885d94cf6d5def48e392d0a9cf26c6cf678e.tar.gz
Fix typo
Diffstat (limited to 'src/flake8')
-rw-r--r--src/flake8/processor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flake8/processor.py b/src/flake8/processor.py
index 692d9d4..c31a5c4 100644
--- a/src/flake8/processor.py
+++ b/src/flake8/processor.py
@@ -270,7 +270,7 @@ class FileProcessor(object):
"""Retrieve the physical line at the specified line number."""
adjusted_line_number = line_number - 1
# NOTE(sigmavirus24): Some plugins choose to report errors for empty
- # files on Line 1. In those casese, we shouldn't bother trying to
+ # files on Line 1. In those cases, we shouldn't bother trying to
# retrieve a physical line (since none exist).
if 0 <= adjusted_line_number < len(self.lines):
return self.lines[adjusted_line_number]