Update configuration.md (#2898)

* Update configuration.md

Fix typo (bindling)

* Update configuration.md
pull/2903/head
Mike PB 2017-03-06 23:18:02 +00:00 committed by Tom Dykstra
parent 56899b35bd
commit d3a2098582
1 changed files with 1 additions and 1 deletions

View File

@ -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)] [!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)] [!code-csharp[Main](configuration/sample/src/WebConfigBind/MyWindow.cs)]