diff mbox series

doc: handlers: fix syntax error in sw-description fragment

Message ID 20240118170059.57413-1-marcus.folkesson@gmail.com
State Accepted
Headers show
Series doc: handlers: fix syntax error in sw-description fragment | expand

Commit Message

Marcus Folkesson Jan. 18, 2024, 5 p.m. UTC
The example is missing curly brackets.

Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
---
 doc/source/handlers.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/doc/source/handlers.rst b/doc/source/handlers.rst
index 627b731..712e4c0 100644
--- a/doc/source/handlers.rst
+++ b/doc/source/handlers.rst
@@ -1296,10 +1296,11 @@  should be in a format accepted by docker.
 ::
 
         images: (
+	{
                 filename = "docker-image.tar"
                 type = "docker_imageload";
                 installed-directly = true;
-        )
+        });
 
 The handler checks return value (JSON message) from the daemon, and returns with success if the image
 is added.