From 45ee8104ecf2a5a64375990425020e9eb3baa8c9 Mon Sep 17 00:00:00 2001 From: Tristano Ajmone Date: Mon, 9 Mar 2015 00:13:24 +0100 Subject: [PATCH] TYPOS IN CODING_STYLE.md Just fixed a few typos. --- CODING_STYLE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CODING_STYLE.md b/CODING_STYLE.md index cb407c3978..38a48ca70b 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -79,7 +79,7 @@ Example of class docstring: ```python class MyClass(object): - """" + """ This class describes the creation of `Objects`. It is useful in many situations, such as ... @@ -123,7 +123,7 @@ def funcname(a, b, c, d=False, **kwargs): ``` The syntax is very "loose" but the indentation matters. That is, you -should end the block headers (like `Args:`) with a line break followed +should end the block headers (like `Args:`) with a line break followed by an indent. When you need to break a line you should start the next line with another indent. For consistency with the code we recommend all indents to be 4 spaces wide (no tabs!).