diff options
author | monsta <[email protected]> | 2020-02-15 14:39:09 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2020-02-15 14:40:38 +0300 |
commit | 7e9632f6ba42db3482069be9e521be150eff5f54 (patch) | |
tree | 54a0a8279c702a27a84e223a45d55cf20a884c9d | |
parent | 8c2dba565b4430dd458bc20112e4a17d41ed815a (diff) | |
download | atril-7e9632f6ba42db3482069be9e521be150eff5f54.tar.bz2 atril-7e9632f6ba42db3482069be9e521be150eff5f54.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 37058030..519e6dcb 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 } }; |