1
0
forked from VimPlug/jedi

Development doc fixes

This commit is contained in:
Danilo Bargen
2013-02-05 11:31:05 +01:00
parent 4e6eff5688
commit a0f07c90e8
3 changed files with 22 additions and 21 deletions

View File

@@ -28,9 +28,9 @@ make an example:
>>> import datetime
>>> datetime.date.toda# <-- cursor here
First of it all, this module doesn't care about completion. It really just
cares about ``datetime.date``. At the end of the procedure
``follow_statement`` will return the ``datetime`` class.
First of all, this module doesn't care about completion. It really just cares
about ``datetime.date``. At the end of the procedure ``follow_statement`` will
return the ``datetime`` class.
To *visualize* this (simplified):
@@ -68,7 +68,7 @@ want. This module has been tested by about 600 tests. Don't be afraid to break
something. The tests are good enough.
I need to mention now that this recursive approach is really good because it
only *executes* what needs to be *executed*. All the statements and modules
only *evaluates* what needs to be *evaluated*. All the statements and modules
that are not used are just being ignored. It's a little bit similar to the
backtracking algorithm.