Skip to content

Commit 5e07f96

Browse files
Fix various typos (#9582)
- it's -> its - its -> it's - reseambles -> resembles
1 parent 524f256 commit 5e07f96

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/whatsnew/1/1.5.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ Release date: 2015-11-29
349349

350350
* Remove the rest of interface checks: interface-is-not-class,
351351
missing-interface-method, unresolved-interface. The reason is that
352-
its better to start recommending ABCs instead of the old Zope era
352+
it's better to start recommending ABCs instead of the old Zope era
353353
of interfaces. One side effect of this change is that ignore-iface-methods
354354
becomes a noop, it's deprecated and it will be removed at some time.
355355

doc/whatsnew/2/2.11/full.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ What's New in Pylint 2.11.0?
1414
----------------------------
1515
Release date: 2021-09-16
1616

17-
* The python3 porting mode checker and it's ``py3k`` option were removed. You can still find it in older pylint
17+
* The python3 porting mode checker and its ``py3k`` option were removed. You can still find it in older pylint
1818
versions.
1919

2020
* ``raising-bad-type`` is now properly emitted when raising a string

doc/whatsnew/2/2.11/summary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ New checkers
4141
Removed checkers
4242
================
4343

44-
* The python3 porting mode checker and it's ``py3k`` option were removed. You can still find it in older pylint
44+
* The python3 porting mode checker and its ``py3k`` option were removed. You can still find it in older pylint
4545
versions.
4646

4747
Extensions

pylint/config/arguments_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def _add_parser_option(
149149
metavar=argument.metavar,
150150
choices=argument.choices,
151151
)
152-
# We add the old name as hidden option to make it's default value gets loaded when
152+
# We add the old name as hidden option to make its default value get loaded when
153153
# argparse initializes all options from the checker
154154
assert argument.kwargs["old_names"]
155155
for old_name in argument.kwargs["old_names"]:

tests/functional/a/access/access_attr_before_def_false_positive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self):
7979
pass
8080

8181
class DefinedOutsideInit:
82-
"""use_attr is seen as the method defining attr because its in
82+
"""use_attr is seen as the method defining attr because it's in
8383
first position
8484
"""
8585
def __init__(self):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# The name is invalid, but we should not analyse this file
2-
# Because its filename reseambles an Emacs file lock ignored by default
2+
# Because its filename resembles an Emacs file lock ignored by default
33
# https://www.gnu.org/software/emacs/manual/html_node/elisp/File-Locks.html
44
# See https://github.com/pylint-dev/pylint/issues/367

0 commit comments

Comments
 (0)