Skip to content

Commit 1bfa5fe

Browse files
committed
Fix formatting issues
1 parent 165e2e9 commit 1bfa5fe

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

storage/resource_dbfs_file.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ func ResourceDBFSFile() *schema.Resource {
3030

3131
Schema: map[string]*schema.Schema{
3232
"content": {
33-
Deprecated: "databricks_dbfs_file.content is deprecated and would be "+
34-
"renamed to `content_base64` in the next version. Please "+
35-
"rewrite your configuration to use `source` field.",
33+
Deprecated: "databricks_dbfs_file.content is deprecated and would be " +
34+
"renamed to `content_base64` in the next version. Please " +
35+
"rewrite your configuration to use `source` field.",
3636
Type: schema.TypeString,
3737
Optional: true,
3838
ForceNew: true,
@@ -44,8 +44,8 @@ func ResourceDBFSFile() *schema.Resource {
4444
ConflictsWith: []string{"content"},
4545
},
4646
"content_b64_md5": {
47-
Deprecated: "databricks_dbfs_file.content_b64_md5 is deprecated and would be "+
48-
"removed in the next version.",
47+
Deprecated: "databricks_dbfs_file.content_b64_md5 is deprecated and would be " +
48+
"removed in the next version.",
4949
Type: schema.TypeString,
5050
Required: true,
5151
ForceNew: true,
@@ -56,22 +56,22 @@ func ResourceDBFSFile() *schema.Resource {
5656
ForceNew: true,
5757
},
5858
"overwrite": {
59-
Deprecated: "databricks_dbfs_file.overwrite is deprecated and would be "+
60-
"removed in the next version.",
59+
Deprecated: "databricks_dbfs_file.overwrite is deprecated and would be " +
60+
"removed in the next version.",
6161
Type: schema.TypeBool,
6262
Optional: true,
6363
Default: false,
6464
},
6565
"mkdirs": {
66-
Deprecated: "databricks_dbfs_file.mkdirs is deprecated and would be "+
67-
"removed in the next version.",
66+
Deprecated: "databricks_dbfs_file.mkdirs is deprecated and would be " +
67+
"removed in the next version.",
6868
Type: schema.TypeBool,
6969
Optional: true,
7070
Default: true,
7171
},
7272
"validate_remote_file": {
73-
Deprecated: "databricks_dbfs_file.validate_remote_file is deprecated and would be "+
74-
"removed in the next version.",
73+
Deprecated: "databricks_dbfs_file.validate_remote_file is deprecated and would be " +
74+
"removed in the next version.",
7575
Type: schema.TypeBool,
7676
Optional: true,
7777
},

workspace/resource_notebook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ func ResourceNotebook() *schema.Resource {
205205
},
206206
Schema: map[string]*schema.Schema{
207207
"content": {
208-
Deprecated: "databricks_notebook.content is deprecated and is "+
209-
"going to be renamed to `content_base64` in version 0.3",
208+
Deprecated: "databricks_notebook.content is deprecated and is " +
209+
"going to be renamed to `content_base64` in version 0.3",
210210
Type: schema.TypeString,
211211
Required: true,
212212
ForceNew: true,

0 commit comments

Comments
 (0)