Skip to content

Commit

Permalink
remove traces of flatmap from copied file that were missed
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarm committed Feb 5, 2025
1 parent ef4a980 commit 33c8461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tfprotov5/raw_identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/hashicorp/terraform-plugin-go/tftypes"
)

// ErrUnknownRawIdentityType is returned when a RawIdentity has no Flatmap or JSON
// ErrUnknownRawIdentityType is returned when a RawIdentity has no JSON
// bytes set. This should never be returned during the normal operation of a
// provider, and indicates one of the following:
//
Expand All @@ -20,7 +20,7 @@ import (
//
// 3. The `RawIdentity` was generated or modified by something other than
// terraform-plugin-go and is no longer a valid value.
var ErrUnknownRawIdentityType = errors.New("RawIdentity had no JSON or flatmap data set")
var ErrUnknownRawIdentityType = errors.New("RawIdentity had no JSON data set")

// RawIdentity is the raw, undecoded state for providers to upgrade. It is
// undecoded as Terraform, for whatever reason, doesn't have the previous
Expand Down

0 comments on commit 33c8461

Please sign in to comment.