summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2020-07-01 06:27:33 +0200
committerGitHub <noreply@github.com>2020-07-01 06:27:33 +0200
commit021b3f7d750ea8eea718b95848dbb53034f658d7 (patch)
tree85ba5fbd72252c09991c39d596a461e79c08430b
parentf6cdd8ad46439b4cec437fd0080c54ec4252ebdf (diff)
parentd94d137bac481089c2c7a121d40744e1ae9fe2fa (diff)
downloadpython-decorator-git-021b3f7d750ea8eea718b95848dbb53034f658d7.tar.gz
Merge pull request #88 from cfra/feature/fix-wording-in-documentation
Fix wording in the documentation
-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.