Skip to content

Commit 3c13419

Browse files
committed
Update doc strings
1 parent 68a04a3 commit 3c13419

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypy/checkmember.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Type checking of member access"""
1+
"""Type checking of attribute access"""
22

33
from mypy.types import (
44
Type, Instance, Any, TupleType, Callable, FunctionLike, TypeVars,
@@ -19,7 +19,7 @@
1919
bool is_super, BasicTypes basic_types,
2020
MessageBuilder msg, TypeInfo override_info=None,
2121
Type report_type=None):
22-
"""Analyse member access.
22+
"""Analyse attribute access.
2323
2424
This is a general operation that supports various different variations:
2525
@@ -86,7 +86,7 @@
8686
Type analyse_member_var_access(str name, Instance itype, TypeInfo info,
8787
Context node, bool is_lvalue, bool is_super,
8888
MessageBuilder msg, Type report_type=None):
89-
"""Analyse member access that does not target a method.
89+
"""Analyse attribute access that does not target a method.
9090
9191
This is logically part of analyse_member_access and the arguments are
9292
similar.

0 commit comments

Comments
 (0)