Skip to content

Commit

Permalink
Update create language help text
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismatu committed Feb 14, 2023
1 parent 92fb734 commit 5a8c890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/create.go
Expand Up @@ -110,7 +110,7 @@ speechly create --name "My App" --output-dir /foo/bar`,
}

func init() {
createCmd.Flags().StringP("language", "l", "en-US", "Application language. Available options are 'en-US' and 'fi-FI'.")
createCmd.Flags().StringP("language", "l", "en-US", "Application language. See docs for available options https://docs.speechly.com/basics/models")
createCmd.Flags().StringP("name", "n", "", "Application name. Can be given as the sole positional argument.")
createCmd.Flags().StringP("output-dir", "o", "", "Output directory for the config file.")
RootCmd.AddCommand(createCmd)
Expand Down
2 changes: 1 addition & 1 deletion docs/create.md
Expand Up @@ -13,7 +13,7 @@ Creates a new application in the current project and a config file in the curren
### Flags

* `--help` `-h` _(bool)_ - help for create
* `--language` `-l` _(string)_ - Application language. Available options are 'en-US' and 'fi-FI'.
* `--language` `-l` _(string)_ - Application language. See docs for available options https://docs.speechly.com/basics/models
* `--name` `-n` _(string)_ - Application name. Can be given as the sole positional argument.
* `--output-dir` `-o` _(string)_ - Output directory for the config file.

Expand Down

0 comments on commit 5a8c890

Please sign in to comment.