From d28eba4f9a62ca96bbfe5069f43864a6a71bea71 Mon Sep 17 00:00:00 2001 From: Peter Wienemann Date: Sun, 29 Aug 2021 08:56:15 +0200 Subject: [PATCH] Fix typos in comment of example code --- examples/advanced/extend_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/advanced/extend_python.py b/examples/advanced/extend_python.py index bdc7149..ba5fa21 100644 --- a/examples/advanced/extend_python.py +++ b/examples/advanced/extend_python.py @@ -39,7 +39,7 @@ def name(n): """, start='file_input') -# Remove the 'python3__' prefix that was add to the implicitely imported rules. +# Remove the 'python3__' prefix that was added to the implicitly imported rules. for t in tree.iter_subtrees(): t.data = t.data.rsplit('__', 1)[-1]