We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8e021 commit 709f8d3Copy full SHA for 709f8d3
docs/writing/style.rst
@@ -95,7 +95,7 @@ arguments, and in which order.
95
In those two cases, it is possible to use argument names when calling the functions
96
and, doing so, it is possible to switch the order of arguments, calling for instance
97
``send(recipient='World', message='Hello')`` and ``point(y=2, x=1)`` but this
98
-reduce readability and is unnecessarily verbose, compared to the more straightforward
+reduces readability and is unnecessarily verbose, compared to the more straightforward
99
calls to ``send('Hello', 'World')`` and ``point(1, 2)``.
100
101
**Keyword arguments** are not mandatory and have default values. They are often
0 commit comments