summaryrefslogtreecommitdiff
path: root/docs/documentation.md
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2020-06-30 13:24:47 +0200
committerChristian Franke <nobody@nowhere.ws>2020-06-30 13:24:47 +0200
commitd94d137bac481089c2c7a121d40744e1ae9fe2fa (patch)
tree85ba5fbd72252c09991c39d596a461e79c08430b /docs/documentation.md
parentf6cdd8ad46439b4cec437fd0080c54ec4252ebdf (diff)
downloadpython-decorator-git-d94d137bac481089c2c7a121d40744e1ae9fe2fa.tar.gz
Fix wording in the documentation
Diffstat (limited to 'docs/documentation.md')
-rw-r--r--docs/documentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index 898a46d..27b4b99 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -1131,7 +1131,7 @@ the dispatch argument simply by passing its name as a string. (Note
that if you misspell the name you will get an error.)
The decorated function `write` is turned into a generic function (
-`write` is a function at the idea it is decorated; it will be turned
+`write` is a function at the time it is decorated; it will be turned
into a method later, at class instantiation time),
and it is called if there are no more specialized implementations.