diff --git a/aspnetcore/mvc/models/model-binding.md b/aspnetcore/mvc/models/model-binding.md index c0a56f1334..b77f70c63a 100644 --- a/aspnetcore/mvc/models/model-binding.md +++ b/aspnetcore/mvc/models/model-binding.md @@ -321,7 +321,7 @@ For targets that are collections of simple types, model binding looks for matche For `Dictionary` targets, model binding looks for matches to *parameter_name* or *property_name*. If no match is found, it looks for one of the supported formats without the prefix. For example: -* Suppose the target parameter is a `Dictionary` named `selectedCourses`: +* Suppose the target parameter is a `Dictionary` named `selectedCourses`: ```csharp public IActionResult OnPost(int? id, Dictionary selectedCourses)