summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElazrod56 <thomas.lf5629@gmail.com>2023-04-19 22:41:30 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-20 07:41:43 +0200
commit7f93962cf4dd5a541734f4597f8f1a24d19ece78 (patch)
tree453a98294653f31e730b50376405ed81699d232b
parentbc9c5c6610cce2a068eabce598200399b9d002f2 (diff)
downloadpylint-git-7f93962cf4dd5a541734f4597f8f1a24d19ece78.tar.gz
Modified comment on line 147 to improve spelling
-rw-r--r--tests/functional/n/not_callable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/n/not_callable.py b/tests/functional/n/not_callable.py
index b0816c0f8..a0411d39e 100644
--- a/tests/functional/n/not_callable.py
+++ b/tests/functional/n/not_callable.py
@@ -144,7 +144,7 @@ Named = typing.NamedTuple("Named", [("foo", int), ("bar", int)])
named = Named(1, 2)
-# NamedTuple is callable, even if it aliased to a attribute
+# NamedTuple is callable, even if it aliased to an attribute
# See https://github.com/pylint-dev/pylint/issues/1730
class TestNamedTuple:
def __init__(self, field: str) -> None: