From 3d6bb056b469902fdd162f4ed4ca25a1fde5d349 Mon Sep 17 00:00:00 2001 From: suin Date: Fri, 2 Nov 2018 15:03:30 +0900 Subject: [PATCH] fix: fix typo in the description of `--path` option --- app/cli/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cli/app.go b/app/cli/app.go index e99b767..a9071e0 100644 --- a/app/cli/app.go +++ b/app/cli/app.go @@ -24,7 +24,7 @@ var App = &cli.App{ Flags: []cli.Flag{ cli.StringSliceFlag{ Name: "path", - Usage: "Path patterns of git repositories. If this options is specified, The configuration of `remind.paths` in .gitconfig is ignored. You may specify multiple paths like --path=/path/to/a --path=/path/to/b", + Usage: "the path patterns of git repositories. If this options is specified, the git global configuration of `remind.paths` will be ignored. You may specify multiple paths like --path=/path/to/a --path=/path/to/b", EnvVar: "GIT_REMIND_PATHS", }, },