summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-03-16 16:19:10 +0100
committerMichele Simionato <michele.simionato@gmail.com>2015-03-16 16:19:10 +0100
commit4dbca25bb139bead4221ab19eade93cfd7ce16ea (patch)
tree1b12a77bf441212a690d97558cdd9e1de9707bb1
parent50e45b33ed7a5fcda777532d5cac50dc6e9bfb67 (diff)
downloadpython-decorator-git-4dbca25bb139bead4221ab19eade93cfd7ce16ea.tar.gz
Fixed docs
-rw-r--r--CHANGES.txt4
-rw-r--r--documentation.py3
2 files changed, 3 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 3a6c1fc..5595fb6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,9 +2,9 @@ HISTORY
----------
3.4.1 Ported the repository from GoogleCode to GitHub and added Travis CI
- support. Tests are now run with the command python test.py -v.
+ support. Tests are executed with the new command `python test.py -v`.
setuptools is now mandatory in Python 3. The suggested
- installation tool is pip, not easy_install. Supported IronPython
+ installation tool is `pip`, not `easy_install`. Supported IronPython
and other Python implementations without sys._getframe, as requested by
Doug Blank (2015/03/16)
3.4.0 Added the ability to use classes and generic callables as callers and
diff --git a/documentation.py b/documentation.py
index 4825fa8..9f5c111 100644
--- a/documentation.py
+++ b/documentation.py
@@ -780,8 +780,7 @@ you will get a ``NameError``:
Finally, the implementation is such that the decorated function
attribute ``.func_globals`` is a *copy* of the original function
-attribute, just as thee attribute dictionary
-of the decorated function.
+attribute, just as the attribute dictionary of the decorated function.
.. code-block:: python