diff --git a/man/ostree-admin-status.xml b/man/ostree-admin-status.xml
index dde099b00d..cc90312c91 100644
--- a/man/ostree-admin-status.xml
+++ b/man/ostree-admin-status.xml
@@ -61,6 +61,65 @@ License along with this library. If not, see .
+
+ Options
+
+
+
+ ="PATH"
+
+
+ Create a new OSTree sysroot at PATH
+
+
+
+
+
+
+
+ Print the commit verification status
+
+
+
+
+
+
+
+ Skip signatures in output
+
+
+
+
+
+
+
+ Output the string default if the default deployment
+ is the booted one, not-default if we are booted in
+ a non-default deployment (e.g. the user interactively chose a
+ different entry in the bootloader menu, or the bootloader rolled back
+ automatically, etc.). If we are not in a booted OSTree system, an
+ error is returned.
+
+
+
+
+
+
+
+ Print debug information during command processing
+
+
+
+
+ --version
+
+
+ Print version information and exit
+
+
+
+
+
Example$ ostree admin status
diff --git a/src/ostree/ot-admin-builtin-status.c b/src/ostree/ot-admin-builtin-status.c
index d4822793ef..2e99ccb52e 100644
--- a/src/ostree/ot-admin-builtin-status.c
+++ b/src/ostree/ot-admin-builtin-status.c
@@ -36,7 +36,7 @@ static GOptionEntry options[] = {
{ "verify", 'V', 0, G_OPTION_ARG_NONE, &opt_verify, "Print the commit verification status",
NULL },
{ "skip-signatures", 'S', 0, G_OPTION_ARG_NONE, &opt_skip_signatures,
- "Print the commit verification status", NULL },
+ "Skip signatures in output", NULL },
{ "query-booted", 'Q', 0, G_OPTION_ARG_NONE, &opt_query_booted,
"Output the string \"default\" if the default deployment is the booted one, \"not-default\" if "
"we are booted in a non-default deployment (e.g. the user interactively chose a different "