From 89646e09707f3007e6197177621bfaf67a72f9b0 Mon Sep 17 00:00:00 2001 From: Alisdair Robertson Date: Wed, 25 Oct 2017 22:59:09 +1100 Subject: [PATCH] Fix Name role in PythonMixin.get_name_of_position docstring --- parso/python/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/python/tree.py b/parso/python/tree.py index 583e2a2..99d3ee4 100644 --- a/parso/python/tree.py +++ b/parso/python/tree.py @@ -97,7 +97,7 @@ class PythonMixin(object): def get_name_of_position(self, position): """ - Given a (line, column) tuple, returns a :class`Name` or ``None`` if + Given a (line, column) tuple, returns a :py:class:`Name` or ``None`` if there is no name at that position. """ for c in self.children: