diff --git a/CSharp/intelligence-LUIS/README.md b/CSharp/intelligence-LUIS/README.md index dd5f0873ab..23fe07eae2 100644 --- a/CSharp/intelligence-LUIS/README.md +++ b/CSharp/intelligence-LUIS/README.md @@ -66,7 +66,7 @@ public async Task Search(IDialogContext context, IAwaitable ac } ```` -Each intent handler method accepts the `IDialogContext`, the original incoming `IMessageActivity` message and the `LuisResult` including the matching Intents and Entities for the LUIS query. In the sample below, the [RootLuisDialog](Dialogs/RootLuisDialog.cs#L46) class retrieves a city value from the processed [pre-built entity](https://www.luis.ai/Help/#PreBuiltEntities). +Each intent handler method accepts the `IDialogContext`, the original incoming `IMessageActivity` message and the `LuisResult` including the matching Intents and Entities for the LUIS query. In the sample below, the [RootLuisDialog](Dialogs/RootLuisDialog.cs#L46) class retrieves a city value from the processed [pre-built entity](https://github.com/Microsoft/Cognitive-Documentation/blob/master/Content/en-us/LUIS/Pre-builtEntities.md). ````C# EntityRecommendation cityEntityRecommendation;