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.6-rc4~19^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e20d8e81a0e06c672e964c9f01100f07a64b1ce6;p=thirdparty%2Flinux.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 7cd56a1993b14..607758a66a99c 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.