From 6e7463005051026ad64006a8580b0b5dc9536b8c Mon Sep 17 00:00:00 2001 From: Ali Parlakci Date: Thu, 26 Jul 2018 11:59:29 +0300 Subject: [PATCH] Typo fix --- docs/COMMAND_LINE_ARGUMENTS.md | 4 ++-- script.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/COMMAND_LINE_ARGUMENTS.md b/docs/COMMAND_LINE_ARGUMENTS.md index b6d8d8f..8b16acf 100644 --- a/docs/COMMAND_LINE_ARGUMENTS.md +++ b/docs/COMMAND_LINE_ARGUMENTS.md @@ -19,10 +19,10 @@ optional arguments: --directory DIRECTORY, -d DIRECTORY Specifies the directory where posts will be downloaded to - --NoDownload Just gets the posts and store them in a file for + --NoDownload Just gets the posts and stores them in a file for downloading later --verbose, -v Verbose Mode - --quit, -q Quit afer the proccess finishes + --quit, -q Auto quit afer the process finishes --link link, -l link Get posts from link --saved Triggers saved mode --submitted Gets posts of --user diff --git a/script.py b/script.py index 85309a5..456f927 100644 --- a/script.py +++ b/script.py @@ -68,7 +68,7 @@ def parseArguments(arguments=[]): metavar="DIRECTORY") parser.add_argument("--NoDownload", - help="Just gets the posts and store them in a file" \ + help="Just gets the posts and stores them in a file" \ " for downloading later", action="store_true", default=False) @@ -79,7 +79,7 @@ def parseArguments(arguments=[]): default=False) parser.add_argument("--quit","-q", - help="Quit afer the proccess finishes", + help="Auto quit afer the process finishes", action="store_true", default=False)