summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code/coding-style.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/internals/contributing/writing-code/coding-style.txt')
-rw-r--r--docs/internals/contributing/writing-code/coding-style.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/internals/contributing/writing-code/coding-style.txt b/docs/internals/contributing/writing-code/coding-style.txt
index bd420ab3ff..67602b87da 100644
--- a/docs/internals/contributing/writing-code/coding-style.txt
+++ b/docs/internals/contributing/writing-code/coding-style.txt
@@ -36,13 +36,13 @@ Python style
* Use four space hanging indentation rather than vertical alignment::
raise AttributeError(
- 'Here is a multine error message '
+ 'Here is a multiline error message '
'shortened for clarity.'
)
Instead of::
- raise AttributeError('Here is a multine error message '
+ raise AttributeError('Here is a multiline error message '
'shortened for clarity.')
This makes better use of space and avoids having to realign strings if the