Skip to content

Commit 8eb6510

Browse files
Fix typo in pylint/interfaces.py
1 parent 6dceba5 commit 8eb6510

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pylint/interfaces.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ class IChecker(Interface):
7575
"""
7676

7777
def open(self):
78-
"""called before visiting project (i.e set of modules)"""
78+
"""called before visiting project (i.e. set of modules)"""
7979

8080
def close(self):
81-
"""called after visiting project (i.e set of modules)"""
81+
"""called after visiting project (i.e. set of modules)"""
8282

8383

8484
class IRawChecker(IChecker):
@@ -87,7 +87,7 @@ class IRawChecker(IChecker):
8787
def process_module(self, node: nodes.Module) -> None:
8888
"""process a module
8989
90-
the module's content is accessible via astroid.stream
90+
the module's content is accessible via ``astroid.stream``
9191
"""
9292

9393

0 commit comments

Comments
 (0)