We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f8e021 + 709f8d3 commit 7a4ba7bCopy full SHA for 7a4ba7b
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