Skip to content

Commit ef7b842

Browse files
committed
refactor: fix typos
1 parent 9f6a658 commit ef7b842

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/certstream-server-go/createIndex.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ create-index will create and pre fill the ct-index.json file with the current va
4848
}
4949
if _, statErr := os.Stat(outFileAbsPath); statErr == nil {
5050
if !force {
51-
fmt.Printf("Output file '%s' already exists. Use --force to overwrite it.\n", outFileAbsPath)
51+
fmt.Printf("Output file '%s' already exists. Use --force to override it.\n", outFileAbsPath)
5252
os.Exit(1)
5353
}
5454
}
@@ -66,5 +66,5 @@ func init() {
6666
rootCmd.AddCommand(createIndexCmd)
6767

6868
createIndexCmd.Flags().StringP("out", "o", "ct_index.json", "Path to the index file to create")
69-
createIndexCmd.Flags().BoolP("force", "f", false, "Whether to overwrite the index file if it already exists")
69+
createIndexCmd.Flags().BoolP("force", "f", false, "Whether to override the index file if it already exists")
7070
}

0 commit comments

Comments
 (0)