From bbfa8059b532f37d7231df08fecb1e8f2b01be34 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Mon, 10 Jul 2017 22:16:28 -0700 Subject: [PATCH] refer to correct action in AutoCorrectCommand's option usage --- Source/swiftlint/Commands/AutoCorrectCommand.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/swiftlint/Commands/AutoCorrectCommand.swift b/Source/swiftlint/Commands/AutoCorrectCommand.swift index 7c7b09b5c..b129d4be3 100644 --- a/Source/swiftlint/Commands/AutoCorrectCommand.swift +++ b/Source/swiftlint/Commands/AutoCorrectCommand.swift @@ -68,8 +68,8 @@ struct AutoCorrectOptions: OptionsProtocol { defaultValue: false, usage: "should reformat the Swift files") <*> mode <| Option(key: "cache-path", defaultValue: "", - usage: "the directory of the cache used when linting") + usage: "the directory of the cache used when correcting") <*> mode <| Option(key: "no-cache", defaultValue: false, - usage: "ignore cache when linting") + usage: "ignore cache when correcting") } }