reformat error message string (#8284)

Signed-off-by: Carlos Panato <ctadeu@gmail.com>
This commit is contained in:
Carlos Tadeu Panato Junior 2021-10-26 22:55:25 +02:00 committed by GitHub
parent 52ba8b446c
commit 1c0a7e4907
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
### Improvements
* reformat error message string in `sdk/go/common/diag/errors.go`
### Bug Fixes

View file

@ -38,7 +38,7 @@ func GetResourceInvalidError(urn resource.URN) *Diag {
}
func GetResourcePropertyInvalidValueError(urn resource.URN) *Diag {
return newError(urn, 2003, "%v resource '%v's property '%v' value %v has a problem: %v")
return newError(urn, 2003, "%v resource '%v': property %v value %v has a problem: %v")
}
func GetPreviewFailedError(urn resource.URN) *Diag {