diff --git a/aspnetcore/fundamentals/configuration.md b/aspnetcore/fundamentals/configuration.md index dba90e61f8..397a394b5f 100644 --- a/aspnetcore/fundamentals/configuration.md +++ b/aspnetcore/fundamentals/configuration.md @@ -166,7 +166,7 @@ The following sample shows how to use the in-memory provider and bind to a class [!code-csharp[Main](configuration/sample/src/InMemory/MyWindow.cs)] -Configuration values are returned as strings, but binding enables the construction of objects. Bindling allows you to retrieve POCO objects or even entire object graphs. The following sample shows how to bind to the `MyWindow` class and use the options pattern with a ASP.NET Core MVC app: +Configuration values are returned as strings, but binding enables the construction of objects. Binding allows you to retrieve POCO objects or even entire object graphs. The following sample shows how to bind to `MyWindow` and use the options pattern with a ASP.NET Core MVC app: [!code-csharp[Main](configuration/sample/src/WebConfigBind/MyWindow.cs)]