Skip to content

Commit a04b10b

Browse files
Typo in documentation related to NestedAttributeObject (#833)
* Update list-nested.mdx * additional documentation fixes
1 parent 3164621 commit a04b10b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

website/docs/plugin/framework/handling-data/attributes/list-nested.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
4242
resp.Schema = schema.Schema{
4343
Attributes: map[string]schema.Attribute{
4444
"example_attribute": schema.ListNestedAttribute{
45-
NestedObject: schema.NestedAttributeOjbect{
45+
NestedObject: schema.NestedAttributeObject{
4646
Attributes: map[string]schema.Attribute{
4747
"attr": schema.StringAttribute{
4848
Required: true,
@@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
7070
resp.Schema = schema.Schema{
7171
Attributes: map[string]schema.Attribute{
7272
"example_attribute": schema.ListNestedAttribute{
73-
NestedObject: schema.NestedAttributeOjbect{
73+
NestedObject: schema.NestedAttributeObject{
7474
Attributes: map[string]schema.Attribute{
7575
"attr1": schema.ListAttribute{
7676
ElementType: types.StringType,

website/docs/plugin/framework/handling-data/attributes/map-nested.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
4242
resp.Schema = schema.Schema{
4343
Attributes: map[string]schema.Attribute{
4444
"example_attribute": schema.MapNestedAttribute{
45-
NestedObject: schema.NestedAttributeOjbect{
45+
NestedObject: schema.NestedAttributeObject{
4646
Attributes: map[string]schema.Attribute{
4747
"attr": schema.StringAttribute{
4848
Required: true,
@@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
7070
resp.Schema = schema.Schema{
7171
Attributes: map[string]schema.Attribute{
7272
"example_attribute": schema.MapNestedAttribute{
73-
NestedObject: schema.NestedAttributeOjbect{
73+
NestedObject: schema.NestedAttributeObject{
7474
Attributes: map[string]schema.Attribute{
7575
"attr1": schema.ListAttribute{
7676
ElementType: types.StringType,

website/docs/plugin/framework/handling-data/attributes/set-nested.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
4242
resp.Schema = schema.Schema{
4343
Attributes: map[string]schema.Attribute{
4444
"example_attribute": schema.SetNestedAttribute{
45-
NestedObject: schema.NestedAttributeOjbect{
45+
NestedObject: schema.NestedAttributeObject{
4646
Attributes: map[string]schema.Attribute{
4747
"attr": schema.StringAttribute{
4848
Required: true,
@@ -70,7 +70,7 @@ func (r ThingResource) Schema(ctx context.Context, req resource.SchemaRequest, r
7070
resp.Schema = schema.Schema{
7171
Attributes: map[string]schema.Attribute{
7272
"example_attribute": schema.SetNestedAttribute{
73-
NestedObject: schema.NestedAttributeOjbect{
73+
NestedObject: schema.NestedAttributeObject{
7474
Attributes: map[string]schema.Attribute{
7575
"attr1": schema.ListAttribute{
7676
ElementType: types.StringType,

0 commit comments

Comments
 (0)