0
0
Fork 0

Merge pull request #725 from tomkralidis/patch-1

fix minor typo
This commit is contained in:
Marty Schoch 2018-01-10 09:56:02 -05:00 committed by GitHub
commit b1a079fe57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ func getAllFiles(args []string, rv chan file) {
func init() {
RootCmd.AddCommand(indexCmd)
indexCmd.Flags().BoolVarP(&keepDir, "keepDir", "d", false, "Keep the directory in the dodcument id, defaults false.")
indexCmd.Flags().BoolVarP(&keepDir, "keepDir", "d", false, "Keep the directory in the document id, defaults false.")
indexCmd.Flags().BoolVarP(&keepExt, "keepExt", "x", false, "Keep the extension in the document id, defaults false.")
indexCmd.Flags().BoolVarP(&parseJSON, "json", "j", true, "Parse the contents as JSON, defaults true.")
}