diff --git a/website/docs/plugin/framework/handling-data/attributes/list-nested.mdx b/website/docs/plugin/framework/handling-data/attributes/list-nested.mdx index df625545e..c7f9119ed 100644 --- a/website/docs/plugin/framework/handling-data/attributes/list-nested.mdx +++ b/website/docs/plugin/framework/handling-data/attributes/list-nested.mdx @@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.ListNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr": schema.StringAttribute{ Required: true, @@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.ListNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr1": schema.ListAttribute{ ElementType: types.StringType, diff --git a/website/docs/plugin/framework/handling-data/attributes/map-nested.mdx b/website/docs/plugin/framework/handling-data/attributes/map-nested.mdx index 6001d3fac..f23729735 100644 --- a/website/docs/plugin/framework/handling-data/attributes/map-nested.mdx +++ b/website/docs/plugin/framework/handling-data/attributes/map-nested.mdx @@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.MapNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr": schema.StringAttribute{ Required: true, @@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.MapNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr1": schema.ListAttribute{ ElementType: types.StringType, diff --git a/website/docs/plugin/framework/handling-data/attributes/set-nested.mdx b/website/docs/plugin/framework/handling-data/attributes/set-nested.mdx index 43c7073ae..c62db574f 100644 --- a/website/docs/plugin/framework/handling-data/attributes/set-nested.mdx +++ b/website/docs/plugin/framework/handling-data/attributes/set-nested.mdx @@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.SetNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr": schema.StringAttribute{ Required: true, @@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r resp.Schema = schema.Schema{ Attributes: map[string]schema.Attribute{ "example_attribute": schema.SetNestedAttribute{ - NestedObject: schema.NestedAttributeOjbect{ + NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "attr1": schema.ListAttribute{ ElementType: types.StringType,