Skip to content

Commit

Permalink
Fixes typo in provider error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ngharo authored and Nick Hall committed Apr 2, 2024
1 parent a771c1a commit 14a016a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ad/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func Provider() *schema.Provider {
v := val.(string)
os := runtime.GOOS
if v == "" && os != "windows" {
errs = append(errs, fmt.Errorf("%q is allowed to be empty only if terraform runs on windows, (curent os: %q) ", key, os))
errs = append(errs, fmt.Errorf("%q is allowed to be empty only if terraform runs on windows, (current os: %q) ", key, os))
}
return
},
Expand All @@ -45,7 +45,7 @@ func Provider() *schema.Provider {
v := val.(string)
os := runtime.GOOS
if v == "" && os != "windows" {
errs = append(errs, fmt.Errorf("%q is allowed to be empty only if terraform runs on windows, (curent os: %q) ", key, os))
errs = append(errs, fmt.Errorf("%q is allowed to be empty only if terraform runs on windows, (current os: %q) ", key, os))
}
return
},
Expand Down

0 comments on commit 14a016a

Please sign in to comment.