From 384fefb44b1a7dd49f98e4416b0e896edd787def Mon Sep 17 00:00:00 2001 From: TsukiCTF <32463233+TsukiCTF@users.noreply.github.com> Date: Fri, 19 May 2023 23:08:49 -0400 Subject: [PATCH] Fix typo Property is named `ObjectId` in the example shown. --- aspnetcore/mvc/models/model-binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/models/model-binding.md b/aspnetcore/mvc/models/model-binding.md index 79ca39ca93..50a114c03e 100644 --- a/aspnetcore/mvc/models/model-binding.md +++ b/aspnetcore/mvc/models/model-binding.md @@ -650,7 +650,7 @@ To use the built-in XML input formatters: An input formatter takes full responsibility for reading data from the request body. To customize this process, configure the APIs used by the input formatter. This section describes how to customize the `System.Text.Json`-based input formatter to understand a custom type named `ObjectId`. -Consider the following model, which contains a custom `ObjectId` property named `Id`: +Consider the following model, which contains a custom `ObjectId` property named `ObjectId`: :::code language="csharp" source="model-binding/samples/6.x/ModelBindingSample/Snippets/InstructorObjectId.cs" id="snippet_Class" highlight="4":::