From 35b88675e2ae1fe41cf6c32d11972057d25f0f8d Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Thu, 14 Mar 2024 14:03:56 +1100 Subject: [PATCH] Fix minor typo (#32055) --- aspnetcore/includes/bind7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/includes/bind7.md b/aspnetcore/includes/bind7.md index 620c63b704..dbad08996c 100644 --- a/aspnetcore/includes/bind7.md +++ b/aspnetcore/includes/bind7.md @@ -16,7 +16,7 @@ An options class: * Must be non-abstract. * Has public read-write properties of the type that have corresponding items in config are bound. * Has its read-write properties bound to matching entries in configuration. -* Does ***not*** have it's fields bound. In the preceding code, `Position` is not bound. The `Position` field is used so the string `"Position"` doesn't need to be hard coded in the app when binding the class to a configuration provider. +* Does ***not*** have its fields bound. In the preceding code, `Position` is not bound. The `Position` field is used so the string `"Position"` doesn't need to be hard coded in the app when binding the class to a configuration provider. The following code: