diff options
-rw-r--r-- | sphinx/pycode/ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/pycode/ast.py b/sphinx/pycode/ast.py index 23da575bd..7bba423b4 100644 --- a/sphinx/pycode/ast.py +++ b/sphinx/pycode/ast.py @@ -45,7 +45,7 @@ OPERATORS: Dict[Type[ast.AST], str] = { def parse(code: str, mode: str = 'exec') -> "ast.AST": - """Parse the *code* using built-in ast or typed_ast. + """Parse the *code* using the built-in ast or typed_ast libraries. This enables "type_comments" feature if possible. """ |