From: Brendan Higgins Date: Sat, 1 Feb 2020 00:01:02 +0000 (-0800) Subject: Documentation: kunit: fixed sphinx error in code block X-Git-Tag: v5.15~4410^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e20d8e81a0e06c672e964c9f01100f07a64b1ce6;p=platform%2Fkernel%2Flinux-starfive.git Documentation: kunit: fixed sphinx error in code block Fix a missing newline in a code block that was causing a warning: Documentation/dev-tools/kunit/usage.rst:553: WARNING: Error in "code-block" directive: maximum 1 argument(s) allowed, 3 supplied. .. code-block:: bash modprobe example-test Signed-off-by: Brendan Higgins Reviewed-by: Alan Maguire Signed-off-by: Shuah Khan --- diff --git a/Documentation/dev-tools/kunit/usage.rst b/Documentation/dev-tools/kunit/usage.rst index 7cd56a1..607758a 100644 --- a/Documentation/dev-tools/kunit/usage.rst +++ b/Documentation/dev-tools/kunit/usage.rst @@ -551,6 +551,7 @@ options to your ``.config``: Once the kernel is built and installed, a simple .. code-block:: bash + modprobe example-test ...will run the tests.