diff --git a/doc/parse-options.fnl b/doc/parse-options.fnl
index 84beb07..a5e272d 100644
--- a/doc/parse-options.fnl
+++ b/doc/parse-options.fnl
@@ -61,7 +61,8 @@
 
 (fn print-service [o]
   (print (.. " * service ``" o.name "``"))
-  (print (indent 4 (or (extract-text o.description) "(no description)")))
+  (match (extract-text o.description)
+    descr (print (indent 4 descr)))
   (print)
   (print (indent 4 "**Service parameters**\n"))
   (each [_ param (ipairs o.parameters)]