diff --git a/docs/configuring-a-resource.md b/docs/configuring-a-resource.md index 90c9a131..00ad1794 100644 --- a/docs/configuring-a-resource.md +++ b/docs/configuring-a-resource.md @@ -319,7 +319,7 @@ In Upjet, we have a [configuration] to provide this information for a field: // Reference represents the Crossplane options used to generate // reference resolvers for fields type Reference struct { - // Type is the type name of the CRD if it is in the same package or + // Type is the Go type name of the CRD if it is in the same package or // . if it is in a different package. Type string // TerraformName is the name of the Terraform resource diff --git a/pkg/config/resource.go b/pkg/config/resource.go index 58bec39b..b78fe81f 100644 --- a/pkg/config/resource.go +++ b/pkg/config/resource.go @@ -171,7 +171,7 @@ type References map[string]Reference // Reference represents the Crossplane options used to generate // reference resolvers for fields type Reference struct { - // Type is the type name of the CRD if it is in the same package or + // Type is the Go type name of the CRD if it is in the same package or // . if it is in a different package. Type string // TerraformName is the name of the Terraform resource