From faa2a54a343c0235e6f9f5bd7e8873219ec424f2 Mon Sep 17 00:00:00 2001 From: TJ Horner Date: Thu, 28 Feb 2019 16:56:55 -0800 Subject: [PATCH] remove a single period (it was bugging me) --- README.md | 2 +- src/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 696e190..a02d7cd 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Usage of e6dl: --out string The directory to write the downloaded posts to (default "dl") --sfw - Download posts from e926 instead of e621. + Download posts from e926 instead of e621 --tags string Tags to search for ``` \ No newline at end of file diff --git a/src/main.go b/src/main.go index 40245cd..887c8a9 100644 --- a/src/main.go +++ b/src/main.go @@ -13,7 +13,7 @@ func main() { maxConcurrents := flag.Int("concurrents", 5, "Maximum amount of concurrent downloads") postLimit := flag.Int("limit", 10, "Maximum amount of posts to grab from e621") saveDirectory := flag.String("out", "dl", "The directory to write the downloaded posts to") - sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621.") + sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621") flag.Parse()