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: