Skip to content

Commit 6606fe0

Browse files
committed
update pkg docs
1 parent 036b9da commit 6606fe0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

internal/fromproto5/identity_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// IdentitySchema converts a *tfprotov5.ResourceIdentitySchema into a resource/identityschema Schema, used for
17-
// converting raw linked resource identity schemas (from another provider server, such as SDKv2 or terraform-plugin-go)
17+
// converting protocol identity schemas (from another provider server, such as SDKv2 or terraform-plugin-go)
1818
// into Framework identity schemas.
1919
func IdentitySchema(ctx context.Context, s *tfprotov5.ResourceIdentitySchema) (*identityschema.Schema, error) {
2020
if s == nil {

internal/fromproto5/resource_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
// ResourceSchema converts a *tfprotov5.Schema into a resource/schema Schema, used for
18-
// converting raw linked resource schemas (from another provider server, such as SDKv2 or terraform-plugin-go)
18+
// converting protocol schemas (from another provider server, such as SDKv2 or terraform-plugin-go)
1919
// into Framework schemas.
2020
func ResourceSchema(ctx context.Context, s *tfprotov5.Schema) (*resourceschema.Schema, error) {
2121
if s == nil || s.Block == nil {

internal/fromproto6/identity_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// IdentitySchema converts a *tfprotov6.ResourceIdentitySchema into a resource/identityschema Schema, used for
17-
// converting raw linked resource identity schemas (from another provider server, such as terraform-plugin-go)
17+
// converting protocol identity schemas (from another provider server, such as terraform-plugin-go)
1818
// into Framework identity schemas.
1919
func IdentitySchema(ctx context.Context, s *tfprotov6.ResourceIdentitySchema) (*identityschema.Schema, error) {
2020
if s == nil {

internal/fromproto6/resource_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
// ResourceSchema converts a *tfprotov6.Schema into a resource/schema Schema, used for
18-
// converting raw linked resource schemas (from another provider server, such as terraform-plugin-go)
18+
// converting protocol schemas (from another provider server, such as terraform-plugin-go)
1919
// into Framework schemas.
2020
func ResourceSchema(ctx context.Context, s *tfprotov6.Schema) (*resourceschema.Schema, error) {
2121
if s == nil || s.Block == nil {

0 commit comments

Comments
 (0)