Kaydet (Commit) 5a2dd5ec authored tarafından Mice Pápai's avatar Mice Pápai Kaydeden (comit) Mariusz Felisiak

Fixed typo in docs/internals/contributing/writing-code/coding-style.txt.

üst 7e5cb463
...@@ -36,13 +36,13 @@ Python style ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment