The examples are not using the right syntax for literal blocks,
leading to errors from asciidoctor.
Use the correct syntax.
Fixes: cd112d860bf6 ("lastlog2: add --journal option to manage SQLite journal mode")
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
== EXAMPLES
Display the current journal mode:
-----
+....
lastlog2 -j
-----
+....
Enable WAL mode for better concurrency (recommended for high-traffic servers):
-----
+....
lastlog2 -j WAL
-----
+....
Switch back to the default DELETE mode:
-----
+....
lastlog2 -j DELETE
-----
+....
== FILES