diff --git a/docs/docs/development.rst b/docs/docs/development.rst index e993f1e8..4a7feb3e 100644 --- a/docs/docs/development.rst +++ b/docs/docs/development.rst @@ -72,7 +72,7 @@ Imports & Modules Modules (modules.py) ~~~~~~~~~~~~~~~~~~~~ -.. automodule:: module +.. automodule:: modules Builtin Modules (builtin.py) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/jedi/parsing.py b/jedi/parsing.py index c80fb8f8..c239aa6e 100644 --- a/jedi/parsing.py +++ b/jedi/parsing.py @@ -1,7 +1,4 @@ """ -Maintainer: David Halter -Version: 0.1 - py_fuzzyparser parses python code, with the goal of a good representation of the code within a tree structure. Variables, Classes and Functions are defined within this tree structure, containing their exact locations in the code. @@ -17,9 +14,9 @@ changed, was programmed by Aaron Griffin . **The structure of the following script:** A Scope has - - imports (Import) - - subscopes (Scope, Class, Function, Flow) - - statements (Statement) +- imports (Import) +- subscopes (Scope, Class, Function, Flow) +- statements (Statement) All these objects have `Name`s. `Call` and `Array` are used as detail objects of a statement. diff --git a/jedi/settings.py b/jedi/settings.py index 1b9125b6..71e5a5ce 100644 --- a/jedi/settings.py +++ b/jedi/settings.py @@ -26,7 +26,7 @@ Filesystem cache ~~~~~~~~~~~~~~~~ .. autodata:: cache_directory -.. autodata:: use_fs_cache +.. autodata:: use_filesystem_cache Parser