From 709f8d3451266b64a2c1533761a6987b6b7c5146 Mon Sep 17 00:00:00 2001 From: Eli Date: Fri, 8 Mar 2013 16:55:48 -0500 Subject: [PATCH] Fix mispelling --- docs/writing/style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/style.rst b/docs/writing/style.rst index c24bb32..285d8ca 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -95,7 +95,7 @@ arguments, and in which order. In those two cases, it is possible to use argument names when calling the functions and, doing so, it is possible to switch the order of arguments, calling for instance ``send(recipient='World', message='Hello')`` and ``point(y=2, x=1)`` but this -reduce readability and is unnecessarily verbose, compared to the more straightforward +reduces readability and is unnecessarily verbose, compared to the more straightforward calls to ``send('Hello', 'World')`` and ``point(1, 2)``. **Keyword arguments** are not mandatory and have default values. They are often