Skip to content

Commit

Permalink
fixed minor typos (#6499)
Browse files Browse the repository at this point in the history
* fixed minor typos

* adding changelog file

* linter

* Update Docs-20230102-170216.yaml
  • Loading branch information
nshuman1 authored Jan 10, 2023
1 parent 0dbdece commit 457ff3e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Docs-20230102-170216.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion core/dbt/cli/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
4 changes: 2 additions & 2 deletions core/dbt/docs/build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ <h3>project_dir<a class="headerlink" href="#init|project_dir" title="Permalink t
<section id="init|skip_profile_setup">
<h3>skip_profile_setup<a class="headerlink" href="#init|skip_profile_setup" title="Permalink to this heading"></a></h3>
<p>Type: boolean</p>
<p>Skip interative profile setup.</p>
<p>Skip interactive profile setup.</p>
</section>
<section id="init|target">
<h3>target<a class="headerlink" href="#init|target" title="Permalink to this heading"></a></h3>
Expand Down Expand Up @@ -852,4 +852,4 @@ <h3 id="searchlabel">Quick search</h3>


</body>
</html>
</html>
2 changes: 1 addition & 1 deletion core/dbt/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 457ff3e

Please sign in to comment.