From ea30ef90d566dcd3506b797937c1d3bfdae09809 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sat, 6 Aug 2022 14:33:41 +0200 Subject: [PATCH] docs fixtypo tab completion Used tab completion in docs instead of tab-completion. --- docs/database/migrations.mdx | 6 +++--- docs/tinyorm/getting-started.mdx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/database/migrations.mdx b/docs/database/migrations.mdx index 1196e6fe4..08234f469 100644 --- a/docs/database/migrations.mdx +++ b/docs/database/migrations.mdx @@ -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. @@ -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. diff --git a/docs/tinyorm/getting-started.mdx b/docs/tinyorm/getting-started.mdx index 7a6721fbd..11a992978 100644 --- a/docs/tinyorm/getting-started.mdx +++ b/docs/tinyorm/getting-started.mdx @@ -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