Skip to content

Commit a27787e

Browse files
authored
Fix typo in template description (#3835)
## Changes Fix typo in template description
1 parent fc1d8b9 commit a27787e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

acceptance/bundle/help/bundle-init/output.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TEMPLATE_PATH optionally specifies which template to use. It can be one of the f
77
- default-sql: The default SQL template for .sql files that run with Databricks SQL
88
- dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)
99
- mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)
10-
- pydabs: A variant of 'default-python' template that defines resources in Python instead of YAML
10+
- pydabs: A variant of the 'default-python' template that defines resources in Python instead of YAML
1111
- a local file system path with a template directory
1212
- a Git repository URL, e.g. https://github.com/my/repository
1313

libs/template/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ var databricksTemplates = []Template{
8787
{
8888
name: Pydabs,
8989
hidden: false,
90-
description: "A variant of 'default-python' template that defines resources in Python instead of YAML",
90+
description: "A variant of the 'default-python' template that defines resources in Python instead of YAML",
9191
Reader: &builtinReader{name: string(Pydabs)},
9292
Writer: &writerWithFullTelemetry{defaultWriter: defaultWriter{name: Pydabs}},
9393
},

libs/template/template_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func TestTemplateHelpDescriptions(t *testing.T) {
1212
- default-sql: The default SQL template for .sql files that run with Databricks SQL
1313
- dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)
1414
- mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)
15-
- pydabs: A variant of 'default-python' template that defines resources in Python instead of YAML`
15+
- pydabs: A variant of the 'default-python' template that defines resources in Python instead of YAML`
1616
assert.Equal(t, expected, HelpDescriptions())
1717
}
1818

@@ -22,7 +22,7 @@ func TestTemplateOptions(t *testing.T) {
2222
{Name: "default-sql", Id: "The default SQL template for .sql files that run with Databricks SQL"},
2323
{Name: "dbt-sql", Id: "The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)"},
2424
{Name: "mlops-stacks", Id: "The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)"},
25-
{Name: "pydabs", Id: "A variant of 'default-python' template that defines resources in Python instead of YAML"},
25+
{Name: "pydabs", Id: "A variant of the 'default-python' template that defines resources in Python instead of YAML"},
2626
{Name: "custom...", Id: "Bring your own template"},
2727
}
2828
assert.Equal(t, expected, options())

0 commit comments

Comments
 (0)