diff --git a/man/ganeti-listrunner.rst b/man/ganeti-listrunner.rst
index bfa0cad7fab28dfd5d3a5a1993d5cd971ce1ff03..1dec5fe13bae8086ba719f9c5523338b5187560c 100644
--- a/man/ganeti-listrunner.rst
+++ b/man/ganeti-listrunner.rst
@@ -89,7 +89,9 @@ Run a command on a list of hosts::
 
 Upload a script, some auxiliary files and run the script::
 
-  listrunner -l logdir -x runme.sh -a seed.dat -a golden.dat -h host1,host2,host3
+  listrunner -l logdir -x runme.sh \
+    -a seed.dat -a golden.dat \
+    -h host1,host2,host3
 
 
 SEE ALSO
diff --git a/man/ganeti-os-interface.rst b/man/ganeti-os-interface.rst
index ba9380982f4eba9cc09ec918778124da2e66b760..02acbfbe03859980af8c82e6ce7f1e4cc932d8e7 100644
--- a/man/ganeti-os-interface.rst
+++ b/man/ganeti-os-interface.rst
@@ -225,12 +225,12 @@ script could be::
     #!/bin/sh
 
     case $OSP_DHCP in
-        ""|yes|no)
-            ;;
-        *)
-            echo "Invalid value '$OSP_DHCP' for the dhcp parameter" 1>&2
-            exit 1;
-            ;;
+      ""|yes|no)
+          ;;
+      *)
+        echo "Invalid value '$OSP_DHCP' for the dhcp parameter" 1>&2
+        exit 1;
+        ;;
     esac
 
     exit 0