From acb173b7035619d3b67a68d87f186475b058be0d Mon Sep 17 00:00:00 2001 From: lcolaholicl Date: Sun, 31 Dec 2017 16:22:56 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20containes=E2=86=92contains?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parso/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/tree.py b/parso/tree.py index 6108612..5316795 100644 --- a/parso/tree.py +++ b/parso/tree.py @@ -338,7 +338,7 @@ class Node(BaseNode): class ErrorNode(BaseNode): """ - A node that containes valid nodes/leaves that we're follow by a token that + A node that contains valid nodes/leaves that we're follow by a token that was invalid. This basically means that the leaf after this node is where Python would mark a syntax error. """