From 93b5e6dffcc5bf0de46ebd5286689268897e9a84 Mon Sep 17 00:00:00 2001 From: yuan Date: Fri, 29 May 2020 15:30:08 +0800 Subject: [PATCH] Fix a one-word typo --- parso/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/tree.py b/parso/tree.py index 5e668cf..b115197 100644 --- a/parso/tree.py +++ b/parso/tree.py @@ -168,7 +168,7 @@ class NodeOrLeaf(object): @abstractmethod def get_code(self, include_prefix=True): """ - Returns the code that was input the input for the parser for this node. + Returns the code that was the input for the parser for this node. :param include_prefix: Removes the prefix (whitespace and comments) of e.g. a statement.