You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Root Cause**: Missing blank line after `code-block` directive caused
RST to interpret content as arguments.
**Fix**: Added blank line to separate directive from content:
```diff
.. code-block:: bash
+
# see below for more information on running the test suite locally
make tests
Copy file name to clipboardExpand all lines: docs/contributing.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,7 @@ Contributing Code
79
79
8. If you running the test suite locally, ensure your code passes all of the default tests. Use the ``test`` target and ensure all tests execute successfully.
80
80
81
81
.. code-block:: bash
82
+
82
83
# see below for more information on running the test suite locally
0 commit comments