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
This commit is contained in:
Chris Dent
2019-04-09 11:41:47 +01:00
parent bb688d7aba
commit c3a1aefefb

View File

@@ -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