aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/config/resource_mode_string.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/config/resource_mode_string.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/config/resource_mode_string.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/hashicorp/terraform/config/resource_mode_string.go b/vendor/github.com/hashicorp/terraform/config/resource_mode_string.go
index ea68b4f..8a55e06 100644
--- a/vendor/github.com/hashicorp/terraform/config/resource_mode_string.go
+++ b/vendor/github.com/hashicorp/terraform/config/resource_mode_string.go
@@ -2,7 +2,7 @@
2 2
3package config 3package config
4 4
5import "fmt" 5import "strconv"
6 6
7const _ResourceMode_name = "ManagedResourceModeDataResourceMode" 7const _ResourceMode_name = "ManagedResourceModeDataResourceMode"
8 8
@@ -10,7 +10,7 @@ var _ResourceMode_index = [...]uint8{0, 19, 35}
10 10
11func (i ResourceMode) String() string { 11func (i ResourceMode) String() string {
12 if i < 0 || i >= ResourceMode(len(_ResourceMode_index)-1) { 12 if i < 0 || i >= ResourceMode(len(_ResourceMode_index)-1) {
13 return fmt.Sprintf("ResourceMode(%d)", i) 13 return "ResourceMode(" + strconv.FormatInt(int64(i), 10) + ")"
14 } 14 }
15 return _ResourceMode_name[_ResourceMode_index[i]:_ResourceMode_index[i+1]] 15 return _ResourceMode_name[_ResourceMode_index[i]:_ResourceMode_index[i+1]]
16} 16}