From c3a1aefefb7fdc3bfa715a382bf432fcc9baef15 Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Tue, 9 Apr 2019 11:41:47 +0100 Subject: [PATCH] Fix arg typos in contributing.rst Review of changes to contributing.rst noticed an unrelated typo in the arguments used in the examples for visual indent. Change-Id: I2268fa6aa6c9272ffbb7b6d3b439539765197fed --- doc/source/contributor/contributing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/contributor/contributing.rst b/doc/source/contributor/contributing.rst index 8b8cef5fb..1427eb716 100644 --- a/doc/source/contributor/contributing.rst +++ b/doc/source/contributor/contributing.rst @@ -191,7 +191,7 @@ pieces fit together. .. code-block:: python - return_value = self.some_method(arg1, arg1, + return_value = self.some_method(arg1, arg2, arg3, arg4) prefer this @@ -199,7 +199,7 @@ pieces fit together. .. code-block:: python return_value = self.some_method( - arg1, arg1, arg3, arg4) + arg1, arg2, arg3, arg4) * Changes associated with stories and tasks in StoryBoard_ should include ``Story`` and ``Task`` identifiers in the commit message, as described in