From 02d0523f40c560cb2c65f5c4dfbedf0a3218c81a Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 15 Sep 2018 11:40:11 +0200 Subject: [PATCH] doc: Fix RST error in Kconfig template documentation A blank line is needed after '.. code-block::', or the code gets misinterpreted as RST parameters: ...doc/subsystems/logging/logger.rst:168: WARNING: Error in "code-block" directive: maximum 1 argument(s) allowed, 9 supplied. .. code-block:: none module = FOO module-str = foo source "subsys/logging/Kconfig.template.log_config" Signed-off-by: Ulf Magnusson --- doc/subsystems/logging/logger.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/subsystems/logging/logger.rst b/doc/subsystems/logging/logger.rst index 55c22ce2e92..af04b6d5c5e 100644 --- a/doc/subsystems/logging/logger.rst +++ b/doc/subsystems/logging/logger.rst @@ -166,6 +166,7 @@ Example below presents usage of the template. As a result CONFIG_FOO_LOG_LEVEL will be generated: .. code-block:: none + module = FOO module-str = foo source "subsys/logging/Kconfig.template.log_config"