fix typo in help text

This commit is contained in:
Andrew Cassidy 2021-04-10 22:11:29 -07:00
parent d5a3f09a58
commit 69fdd6a4c8
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ Options:
Commands: Commands:
decode Decode DDS files to images. decode Decode DDS files to images.
encode Decode DDS files to images of the given format. encode Encode images to DDS files of the given format.
``` ```
To decode DDS files to images, use the `decode` subdommand, along with a glob or a To decode DDS files to images, use the `decode` subdommand, along with a glob or a

View File

@ -12,7 +12,7 @@ from PIL import Image
@click.group() @click.group()
def encode(): def encode():
"""Decode DDS files to images of the given format.""" """Encode images to DDS files of the given format."""
@click.command() @click.command()