diff options
author | monsta <[email protected]> | 2020-02-15 14:39:09 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2020-02-26 16:16:12 +0300 |
commit | 47dbea490f08c8a76ebcf1583f61e6c8f1961d59 (patch) | |
tree | 900d3044c243f875c7cecebbb86f50984a6e87f1 | |
parent | 50c4edb5b8ee02b3eb81137787a4f8698a5466bc (diff) | |
download | atril-47dbea490f08c8a76ebcf1583f61e6c8f1961d59.tar.bz2 atril-47dbea490f08c8a76ebcf1583f61e6c8f1961d59.tar.xz |
thumbnailer: fix typo in the option description
-rw-r--r-- | thumbnailer/atril-thumbnailer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thumbnailer/atril-thumbnailer.c b/thumbnailer/atril-thumbnailer.c index 4ab529df..6c211997 100644 --- a/thumbnailer/atril-thumbnailer.c +++ b/thumbnailer/atril-thumbnailer.c @@ -37,7 +37,7 @@ static char **file_arguments = NULL; static const GOptionEntry goption_options[] = { { "size", 's', 0, G_OPTION_ARG_INT, &size, NULL, "SIZE" }, { "no-limit", 'l', G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &time_limit, "Don't limit the thumbnailing time to 15 seconds", NULL }, - { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &file_arguments, NULL, "<input> <ouput>" }, + { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &file_arguments, NULL, "<input> <output>" }, { NULL } }; |