docs fixtypo tab completion

Used tab completion in docs instead of tab-completion.
This commit is contained in:
silverqx
2022-08-06 14:33:41 +02:00
parent efab782182
commit ea30ef90d5
2 changed files with 4 additions and 4 deletions

View File

@@ -161,11 +161,11 @@ You can also output the completion script using the `--stdout` option eg. `tom i
### Alternative installation methods
This section describes alternative installation methods for `bash` and `zsh` tab-completions.
This section describes alternative installation methods for `bash` and `zsh` tab completions.
#### Static installation
Idea is to output the tab-completion to the file and then source it.
Idea is to output the tab completion to the file and then source it.
<Tabs groupId={shell}>
<TabItem value={bash} label={bash_label}>
@@ -195,7 +195,7 @@ compdef _tom tom
#### Dynamic installation
Idea is to __avoid__ outputting the tab-completion to the file, so you `eval` the tab-completion source code right away.
Idea is to __avoid__ outputting the tab completion to the file, so you `eval` the tab completion source code right away.
<Tabs groupId={shell}>
<TabItem value={bash} label={bash_label}>

View File

@@ -95,7 +95,7 @@ tom make:model Tagged --pivot-model --incrementing
```
:::tip
Writing a `make:model` commands is superb with the [tab-completion](/database/migrations.mdx#tab-completion).
Writing a `make:model` commands is superb with the [tab completion](/database/migrations.mdx#tab-completion).
:::
:::note