[2.1.x] Fixed typo in docs/internals/contributing/writing-code/coding-style.txt.

Backport of 5a2dd5ec5330938e9afb77faf6ca89abf39c018c from master
This commit is contained in:
Mice Pápai 2018-11-02 15:59:12 +01:00 committed by Mariusz Felisiak
parent 28702011a0
commit 394af709db

View File

@ -36,13 +36,13 @@ Python style
* Use four space hanging indentation rather than vertical alignment:: * Use four space hanging indentation rather than vertical alignment::
raise AttributeError( raise AttributeError(
'Here is a multine error message ' 'Here is a multiline error message '
'shortened for clarity.' 'shortened for clarity.'
) )
Instead of:: Instead of::
raise AttributeError('Here is a multine error message ' raise AttributeError('Here is a multiline error message '
'shortened for clarity.') 'shortened for clarity.')
This makes better use of space and avoids having to realign strings if the This makes better use of space and avoids having to realign strings if the