From 97f31c8b47bb3f63d934de669e558b19b61366d8 Mon Sep 17 00:00:00 2001 From: Mauricio de los Santos Date: Tue, 10 Jul 2018 12:57:12 -0300 Subject: [PATCH] CC63734: Fixing broken link (#7539) Hello, @rick-anderson , This proposed file change comes from https://github.com/aspnet/Docs.zh-tw/pull/56. Could you review this contribution and help to merge if agreed? Many thanks in advance. --- aspnetcore/mvc/controllers/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/controllers/routing.md b/aspnetcore/mvc/controllers/routing.md index fe6341927a..dccc03728b 100644 --- a/aspnetcore/mvc/controllers/routing.md +++ b/aspnetcore/mvc/controllers/routing.md @@ -690,7 +690,7 @@ Conceptually, `IActionConstraint` is a form of *overloading*, but instead of ove The simplest way to implement an `IActionConstraint` is to create a class derived from `System.Attribute` and place it on your actions and controllers. MVC will automatically discover any `IActionConstraint` that are applied as attributes. You can use the application model to apply constraints, and this is probably the most flexible approach as it allows you to metaprogram how they're applied. -In the following example a constraint chooses an action based on a *country code* from the route data. The [full sample on GitHub](https://github.com/aspnet/Entropy/blob/dev/samples/Mvc.ActionConstraintSample.Web/CountrySpecificAttribute.cs). +In the following example a constraint chooses an action based on a *country code* from the route data. The [full sample on GitHub](https://github.com/aspnet/Entropy/blob/master/samples/Mvc.ActionConstraintSample.Web/CountrySpecificAttribute.cs). ```csharp public class CountrySpecificAttribute : Attribute, IActionConstraint