diff --git a/.changes/unreleased/Docs-20230102-170216.yaml b/.changes/unreleased/Docs-20230102-170216.yaml new file mode 100644 index 00000000000..602d7a80b24 --- /dev/null +++ b/.changes/unreleased/Docs-20230102-170216.yaml @@ -0,0 +1,6 @@ +kind: Docs +body: Updated minor typos encountered when skipping profile setup +time: 2023-01-02T17:02:16.66596191-05:00 +custom: + Author: nshuman1 + Issue: 6529 diff --git a/core/dbt/cli/params.py b/core/dbt/cli/params.py index 5045d04cc18..b739e886e2a 100644 --- a/core/dbt/cli/params.py +++ b/core/dbt/cli/params.py @@ -270,7 +270,7 @@ ) skip_profile_setup = click.option( - "--skip-profile-setup", "-s", envvar=None, help="Skip interative profile setup.", is_flag=True + "--skip-profile-setup", "-s", envvar=None, help="Skip interactive profile setup.", is_flag=True ) # TODO: The env var and name (reflected in flags) are corrections! diff --git a/core/dbt/docs/build/html/index.html b/core/dbt/docs/build/html/index.html index d4238bb08c3..a62245c306d 100644 --- a/core/dbt/docs/build/html/index.html +++ b/core/dbt/docs/build/html/index.html @@ -321,7 +321,7 @@

project_dir

skip_profile_setup

Type: boolean

-

Skip interative profile setup.

+

Skip interactive profile setup.

target

@@ -852,4 +852,4 @@

Quick search

- \ No newline at end of file + diff --git a/core/dbt/main.py b/core/dbt/main.py index 55920e8a5cc..5c3c629a875 100644 --- a/core/dbt/main.py +++ b/core/dbt/main.py @@ -351,7 +351,7 @@ def _build_init_subparser(subparsers, base_subparser): dest="skip_profile_setup", action="store_true", help=""" - Skip interative profile setup. + Skip interactive profile setup. """, ) sub.set_defaults(cls=init_task.InitTask, which="init", rpc_method=None)