diff options
author | monsta <[email protected]> | 2020-02-15 14:39:09 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-15 14:39:09 +0300 |
commit | 992c27c2c8c864ec203d1ed25f3f678c730e631e (patch) | |
tree | da05f17d8d9e54269c7bc1a0878333f40ba70bac /thumbnailer/atril-thumbnailer.c | |
parent | 52dddbed04ebf391a3a20c88c67289c148e34510 (diff) | |
download | atril-992c27c2c8c864ec203d1ed25f3f678c730e631e.tar.bz2 atril-992c27c2c8c864ec203d1ed25f3f678c730e631e.tar.xz |
thumbnailer: fix typo in the option description
Diffstat (limited to 'thumbnailer/atril-thumbnailer.c')
-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 } }; |