From ac0467a2290fce35539d53013dd39e8ea883a8e9 Mon Sep 17 00:00:00 2001 From: Jensen Date: Sun, 9 Dec 2018 00:16:01 +0100 Subject: [PATCH] Fixes #9420 "your can use" should be "you can use" --- docs/csharp/versioning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/versioning.md b/docs/csharp/versioning.md index a966052029243..af38ab3c5a4d7 100644 --- a/docs/csharp/versioning.md +++ b/docs/csharp/versioning.md @@ -66,7 +66,7 @@ Lucky for you C# and the .NET ecosystem comes with features and techniques that ### Assembly Binding Redirection -You can use the `app.config` file to update the version of a library your app uses. By adding what is called a [*binding redirect*](../framework/configure-apps/redirect-assembly-versions.md) your +You can use the `app.config` file to update the version of a library your app uses. By adding what is called a [*binding redirect*](../framework/configure-apps/redirect-assembly-versions.md) you can use the new library version without having to recompile your app. The following example shows how you would update your app's `app.config` file to use the `1.0.1` patch version of `ReferencedLibrary` instead of the `1.0.0` version it was originally compiled with.