Modifying "snake-case" to "kebab-case" for clarity. (#1196)

This commit is contained in:
Danny Hermes 2020-09-16 08:27:58 -07:00 committed by GitHub
parent 8a39cb2614
commit 7f8e83d936
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ cobra add config
cobra add create -p 'configCmd'
```
*Note: Use camelCase (not snake_case/snake-case) for command names.
*Note: Use camelCase (not snake_case/kebab-case) for command names.
Otherwise, you will encounter errors.
For example, `cobra add add-user` is incorrect, but `cobra add addUser` is valid.*