We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8767dff commit cf583ccCopy full SHA for cf583cc
HACKING.rst
@@ -15,7 +15,7 @@ Visual indentation looks like this:
15
return_value = self.some_method(arg1, arg1,
16
arg3, arg4)
17
18
-Visual indentation makes refactoring the code base unneccesarily hard.
+Visual indentation makes refactoring the code base unnecessarily hard.
19
20
Instead of visual indentation, use this:
21
@@ -27,7 +27,7 @@ Instead of visual indentation, use this:
27
That way, if some_method ever needs to be renamed, the only line that needs
28
to be touched is the line with some_method.
29
30
-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
31
the continuation line an additional 4 spaces, like this:
32
33
.. code-block:: python
0 commit comments