From bbfa4792276ccb1e556ea15c2cbb32861e005093 Mon Sep 17 00:00:00 2001 From: Chris Warrick Date: Sun, 11 Nov 2012 21:04:00 +0100 Subject: [PATCH] Fix a tiny typo --- 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 58ce019..706ee7a 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -107,7 +107,7 @@ passed another value. Calling a function with keyword arguments can be done in multiple ways in Python, for example it is possible to follow the order of arguments in the definition without -explicitly naming the arguments, like in ``send('Hello', 'World', 'Cthulhu`, 'God')``, +explicitly naming the arguments, like in ``send('Hello', 'World', 'Cthulhu', 'God')``, sending a blank carbon copy to God. It would also be possible to name arguments in another order, like in ``send('Hello again', 'World', bcc='God', cc='Cthulhu')``. Those two possibilities are better avoided without any strong reason to not