diff options
| -rw-r--r-- | docs/documentation.md | 2 | ||||
| -rw-r--r-- | src/tests/documentation.py | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/src/tests/documentation.py b/src/tests/documentation.py index 02f5b37..40b0a28 100644 --- a/src/tests/documentation.py +++ b/src/tests/documentation.py @@ -424,7 +424,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) |
