summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-09-11 07:29:07 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-09-11 07:29:07 +0200
commit0094c7b282a45aaa234f14b90984ccdc350dc6c5 (patch)
treeb2a36ee9a795c83466eb89eac03c3aaeb876d055
parent2605fbb11a023d103277b18525f2f44bb9743729 (diff)
downloadpython-decorator-git-0094c7b282a45aaa234f14b90984ccdc350dc6c5.tar.gz
Fixed misprint in the docs
-rw-r--r--docs/documentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index d7f282d..2c896c4 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -1524,7 +1524,7 @@ to look at the [wrapt](https://wrapt.readthedocs.io/en/latest/)
project by Graeme Dumpleton.
Since version 5 the ``decorator`` module uses the ``inspect.Signature``
-object in the standard library. Unfortunaly, for legacy reasons, some
+object in the standard library. Unfortunately, for legacy reasons, some
applications introspect decorated functions by using low-level entities like
the ``__code__`` object and not signature objects. An example will make
the issue clear: