Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Typo in resources index: s/Read/Delete/ #482

Merged
merged 2 commits into from Sep 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/plugin/framework/resources/index.mdx
Expand Up @@ -98,7 +98,7 @@ func (r *ThingResource) Update(ctx context.Context, req resource.UpdateRequest,
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}

func (r *ThingResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
func (r *ThingResource) Delete(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
bflad marked this conversation as resolved.
Show resolved Hide resolved
var data ThingResourceModel

// Read Terraform prior state data into the model
Expand Down