Skip to content

Commit

Permalink
Fix whitespace in code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
sreallymatt committed Dec 9, 2024
1 parent d24e0b8 commit d5db7ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contributing/topics/guide-breaking-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ This is a breaking change as Terraform should not trigger a plan between minor v

```go
func (r SparkResource) Arguments() map[string]*pluginsdk.Schema{
args := map[string]*pluginsdk.Schema{
args := map[string]*pluginsdk.Schema{
"spark_version": {
Type: pluginsdk.TypeString,
Optional: true,
Expand All @@ -353,13 +353,13 @@ func (r SparkResource) Arguments() map[string]*pluginsdk.Schema{
"3.4",
}, false),
},
}
}
if !features.FivePointOhBeta() {
args["spark_version"].Default = "2.4"
if !features.FivePointOhBeta() {
args["spark_version"].Default = "2.4"
}
return args
return args
}
```

Expand Down

0 comments on commit d5db7ef

Please sign in to comment.