From f193ae67e9fc972fb436763fe2fc4e9ec9d61468 Mon Sep 17 00:00:00 2001 From: Tom Aarsen <37621491+tomaarsen@users.noreply.github.com> Date: Wed, 17 Nov 2021 12:59:13 +0100 Subject: [PATCH] typo: "statemenet" -> "statement" --- jedi/api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/api/__init__.py b/jedi/api/__init__.py index 0c4db2dc..a243c531 100644 --- a/jedi/api/__init__.py +++ b/jedi/api/__init__.py @@ -581,7 +581,7 @@ class Script: @validate_line_column def extract_variable(self, line, column, *, new_name, until_line=None, until_column=None): """ - Moves an expression to a new statemenet. + Moves an expression to a new statement. For example if you have the cursor on ``foo`` and provide a ``new_name`` called ``bar``::