Skip to content

Commit a8e36af

Browse files
fix grammar issues with style guide
1 parent 0a045fd commit a8e36af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/writing/style.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ called with each recipient as an argument: ``send('Hello', 'God', 'Mom',
128128
'Cthulhu')``, and in the function body ``args`` will be equal to ``('God',
129129
'Mom', 'Cthulhu')``.
130130
131-
However, this construct has some drawback and should be used with caution. If a
131+
However, this construct has some drawbacks and should be used with caution. If a
132132
function receives a list of arguments of the same nature, it is often more
133133
clear to define it as a function of one argument, that argument being a list or
134134
any sequence. Here, if ``send`` has multiple recipients, it is better to define
@@ -156,7 +156,7 @@ Python functions that are:
156156
157157
* easy to read (the name and arguments need no explanations)
158158
159-
* easy to change (adding a new keyword argument do not break other parts of the
159+
* easy to change (adding a new keyword argument does not break other parts of the
160160
code)
161161
162162
Avoid the magical wand
@@ -179,7 +179,7 @@ way. However, knowing how to use them and particularly when **not** to use
179179
them is the most important.
180180
181181
Like a Kungfu master, a Pythonista knows how to kill with a single finger, and
182-
never do it.
182+
never to do it.
183183
184184
We are all consenting adults
185185
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)