Skip to content

Commit

Permalink
Capitilized 'Snowflake' (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pjob committed Apr 25, 2024
1 parent 35a0dcb commit 0ada2fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/snowflake/cli/plugins/git/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def fetch(
**options,
) -> CommandResult:
"""
Fetch changes from origin to snowflake repository.
Fetch changes from origin to Snowflake repository.
"""
return QueryResult(GitManager().fetch(repo_name=repository_name))

Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/cli/plugins/object/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Tag:

def __post_init__(self):
if not is_valid_identifier(self.name):
raise ValueError("name of a tag must be a valid snowflake identifier")
raise ValueError("name of a tag must be a valid Snowflake identifier")

def value_string_literal(self):
return to_string_literal(self.value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def is_package_available(
"""
Checks of a requirement is available in the Snowflake Anaconda Channel.
As snowflake currently doesn't support extra syntax (ex. `jinja2[diagrams]`), if such
As Snowflake currently doesn't support extra syntax (ex. `jinja2[diagrams]`), if such
extra is present in the dependency, we mark it as unavailable.
"""
if not package.name or package.extras:
Expand Down
4 changes: 2 additions & 2 deletions tests/__snapshots__/test_help_messages.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@

Usage: default git fetch [OPTIONS] REPOSITORY_NAME

Fetch changes from origin to snowflake repository.
Fetch changes from origin to Snowflake repository.

╭─ Arguments ──────────────────────────────────────────────────────────────────╮
│ * repository_name TEXT Identifier of the git repository. For │
Expand Down Expand Up @@ -1472,7 +1472,7 @@
│ `@my_repo/branches/main/*.sql`, │
│ `@my_repo/branches/main/dev/*`. Only files with `.sql` │
│ extension will be executed. │
│ fetch Fetch changes from origin to snowflake repository. │
│ fetch Fetch changes from origin to Snowflake repository. │
│ list-branches List all branches in the repository. │
│ list-files List files from given state of git repository. │
│ list-tags List all tags in the repository. │
Expand Down

0 comments on commit 0ada2fe

Please sign in to comment.