diff mbox series

docs: handlers: Fix indentation

Message ID 4D57207E-9E07-4A5A-A305-297450580031@siemens.com
State Accepted
Headers show
Series docs: handlers: Fix indentation | expand

Commit Message

Storm, Christian June 9, 2024, 7:22 p.m. UTC
Signed-off-by: Christian Storm <christian.storm@siemens.com>
---
 doc/source/handlers.rst | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)
diff mbox series

Patch

diff --git a/doc/source/handlers.rst b/doc/source/handlers.rst
index 9e09e420..f464998c 100644
--- a/doc/source/handlers.rst
+++ b/doc/source/handlers.rst
@@ -510,24 +510,24 @@  Example:
 
 ::
 
-	scripts: (
-		{
-                        filename = "testscript.lua";
-                        type = "lua";
-                        properties: {
-				global-state = "true";
-                                preinstall = "pretest1";
-			}
-		},
-		{
-			filename = "test2script.lua";
-			type = "lua";
-			properties: {
-				global-state = "true";
-                                postinstall = "posttest2";
-                                postfailure = "failure";
-			}
-		}
+        scripts: (
+            {
+                filename = "testscript.lua";
+                type = "lua";
+                properties: {
+                    global-state = "true";
+                    preinstall = "pretest1";
+                }
+            },
+            {
+                filename = "test2script.lua";
+                type = "lua";
+                properties: {
+                    global-state = "true";
+                    postinstall = "posttest2";
+                    postfailure = "failure";
+                }
+        }
 
 Two scripts are defined. Both are using the global Lua state.
 Functions in test2script can find and run functions defined in testscript.lua,