1
0
forked from VimPlug/jedi

Rename goto_definition to goto_definitions.

This commit is contained in:
Dave Halter
2016-06-11 23:15:55 +02:00
parent c82691a12b
commit a485412af0
4 changed files with 5 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ def search_function_call(evaluator, func):
trailer = t
break
if trailer is not None:
types = evaluator.goto_definition(name)
types = evaluator.goto_definitions(name)
# We have to remove decorators, because they are not the
# "original" functions, this way we can easily compare.