summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-04 07:54:25 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-04 07:54:25 +0200
commit912522c0512b44eb5d3549bf1f50bb15e60fbb39 (patch)
treeb0c28662a1e64b0afc51fe5d0f0cacdabd46efa5 /docs
parent13aa60958d40e8ac9ba46d5f0abd8c497e96c95c (diff)
downloadpython-decorator-git-912522c0512b44eb5d3549bf1f50bb15e60fbb39.tar.gz
Doc fix
Diffstat (limited to '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 858c754..b3747a9 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -542,7 +542,7 @@ Here is how it works:
This is exactly what the ``chattywrapper`` decorator would print:
positional arguments are seen as keyword arguments, but only if the
client code calls them with the keyword syntax. Otherwise they stay
-positional:
+positional, i.e. they belongs to the ``args`` tuple and not to ``kwargs``:
```python
>>> printsum2(1, 2)