diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2019-10-16 18:17:17 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-10-16 17:17:17 +0200 |
commit | af802b16fb61cf3b07002c3def04c9c6f3c21c80 (patch) | |
tree | 19663070f215518fec88ba3eff8b7ae6572d2c6a /astroid/rebuilder.py | |
parent | 2f288598de485c6af25788fc917139b48c31c474 (diff) | |
download | astroid-git-af802b16fb61cf3b07002c3def04c9c6f3c21c80.tar.gz |
Spelling fixes (#706)
Diffstat (limited to 'astroid/rebuilder.py')
-rw-r--r-- | astroid/rebuilder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/rebuilder.py b/astroid/rebuilder.py index fb78f7bb..10fd5900 100644 --- a/astroid/rebuilder.py +++ b/astroid/rebuilder.py @@ -16,7 +16,7 @@ # Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html # For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER -"""this module contains utilities for rebuilding a _ast tree in +"""this module contains utilities for rebuilding an _ast tree in order to get a single Astroid representation """ @@ -456,7 +456,7 @@ class TreeRebuilder: def visit_decorators(self, node, parent): """visit a Decorators node by returning a fresh instance of it""" - # /!\ node is actually a _ast.FunctionDef node while + # /!\ node is actually an _ast.FunctionDef node while # parent is an astroid.nodes.FunctionDef node if PY38: # Set the line number of the first decorator for Python 3.8+. |