Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mypy/argmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def map_actuals_to_formals(
The result contains a list of caller argument indexes mapping to each
callee argument index, indexed by callee index.

The caller_arg_type argument should evaluate to the type of the actual
argument type with the given index.
The actual_arg_type argument should evaluate to the type of the actual
argument with the given index.
"""
nformals = len(formal_kinds)
formal_to_actual: list[list[int]] = [[] for i in range(nformals)]
Expand Down