1
0
forked from VimPlug/jedi

Do not use >>> for non-doctest code example

Use literal block instead.
This commit is contained in:
Takafumi Arakaki
2013-02-26 10:36:08 +01:00
parent dad9cf0518
commit 95a98c9033
6 changed files with 27 additions and 24 deletions

View File

@@ -360,11 +360,11 @@ class Script(object):
E.g. if the cursor is here::
>>> abs(# <-- cursor is here
abs(# <-- cursor is here
This would return the ``abs`` function. On the other hand::
>>> abs()# <-- cursor is here
abs()# <-- cursor is here
This would return ``None``.