From 24901067fa34d24ec27dae49ca6ca09c3663e471 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 15 Jan 2015 21:46:51 -0500 Subject: [PATCH] Clarify help output We might add commands to list available runtimes and applications, so clarify that list-runtimes/list-apps list installed ones. --- xdg-app-builtins-list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xdg-app-builtins-list.c b/xdg-app-builtins-list.c index d1006c14..6889e602 100644 --- a/xdg-app-builtins-list.c +++ b/xdg-app-builtins-list.c @@ -142,7 +142,7 @@ xdg_app_builtin_list_runtimes (int argc, char **argv, GCancellable *cancellable, gs_unref_object XdgAppDir *dir = NULL; gs_unref_object GFile *base = NULL; - context = g_option_context_new (" - List runtimes"); + context = g_option_context_new (" - List installed runtimes"); if (!xdg_app_option_context_parse (context, options, &argc, &argv, 0, &dir, cancellable, error)) goto out; @@ -183,7 +183,7 @@ xdg_app_builtin_list_apps (int argc, char **argv, GCancellable *cancellable, GEr gs_unref_object XdgAppDir *dir = NULL; gs_unref_object GFile *base = NULL; - context = g_option_context_new (" - List applications"); + context = g_option_context_new (" - List installed applications"); if (!xdg_app_option_context_parse (context, options, &argc, &argv, 0, &dir, cancellable, error)) goto out;