From 38f7296f3908441c5af2930d92fc7fff0336a190 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 9 Sep 2014 16:51:46 +0200 Subject: [PATCH] Typo. --- jedi/evaluate/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/evaluate/__init__.py b/jedi/evaluate/__init__.py index bc449d77..63772882 100644 --- a/jedi/evaluate/__init__.py +++ b/jedi/evaluate/__init__.py @@ -326,7 +326,7 @@ class Evaluator(object): # reference. In this case it's just a definition. So we stay on it. if len(call_path) == 1 and isinstance(call_path[0], pr.NamePart) \ and call_path[0] in [d.names[-1] for d in stmt.get_defined_names()]: - # Named params should get resolved to their param defintions. + # Named params should get resolved to their param definitions. if pr.Array.is_type(stmt.parent, pr.Array.TUPLE, pr.Array.NOARRAY) \ and stmt.parent.previous: call = deep_ast_copy(stmt.parent.previous)