From cf583ccace017858f7d33a531b3df8af5338cc51 Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Sat, 9 Mar 2019 17:25:16 +0100 Subject: [PATCH] Fix some typos Change-Id: Ief188ad290cbf6e00be8742d27e99a0af42a07d9 --- HACKING.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HACKING.rst b/HACKING.rst index 9179bd7c0..cf66c368c 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -15,7 +15,7 @@ Visual indentation looks like this: return_value = self.some_method(arg1, arg1, 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: @@ -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 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: .. code-block:: python