Fix some typos
Change-Id: Ief188ad290cbf6e00be8742d27e99a0af42a07d9
This commit is contained in:
parent
8767dfff2f
commit
cf583ccace
@ -15,7 +15,7 @@ Visual indentation looks like this:
|
|||||||
return_value = self.some_method(arg1, arg1,
|
return_value = self.some_method(arg1, arg1,
|
||||||
arg3, arg4)
|
arg3, arg4)
|
||||||
|
|
||||||
Visual indentation makes refactoring the code base unneccesarily hard.
|
Visual indentation makes refactoring the code base unnecessarily hard.
|
||||||
|
|
||||||
Instead of visual indentation, use this:
|
Instead of visual indentation, use this:
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ Instead of visual indentation, use this:
|
|||||||
That way, if some_method ever needs to be renamed, the only line that needs
|
That way, if some_method ever needs to be renamed, the only line that needs
|
||||||
to be touched is the line with some_method.
|
to be touched is the line with some_method.
|
||||||
|
|
||||||
Additionaly, if you need to line break at the top of a block, please indent
|
Additionally, if you need to line break at the top of a block, please indent
|
||||||
the continuation line an additional 4 spaces, like this:
|
the continuation line an additional 4 spaces, like this:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
Loading…
x
Reference in New Issue
Block a user