From 2b1a1abb4e3f8daeb8b818a08f9a0e902aa1d40e Mon Sep 17 00:00:00 2001 From: Takashi Takebayashi Date: Fri, 7 Nov 2025 10:02:23 +0900 Subject: [PATCH] Fix typo: fullfil -> fulfill --- articles/ai-services/luis/includes/sdk-csharp.md | 2 +- articles/ai-services/luis/includes/sdk-nodejs.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/ai-services/luis/includes/sdk-csharp.md b/articles/ai-services/luis/includes/sdk-csharp.md index 54fd399db13..958ae13039a 100644 --- a/articles/ai-services/luis/includes/sdk-csharp.md +++ b/articles/ai-services/luis/includes/sdk-csharp.md @@ -153,7 +153,7 @@ The `intentName` value is hard-coded to `OrderPizzaIntent` as part of the variab ## Create entities for the app -While entities are not required, they are found in most apps. The entity extracts information from the user utterance, necessary to fullfil the user's intention. There are several types of [prebuilt](/dotnet/api/microsoft.azure.cognitiveservices.language.luis.authoring.modelextensions.addprebuiltasync) and custom entities, each with their own data transformation object (DTO) models. Common prebuilt entities to add to your app include [number](../luis-reference-prebuilt-number.md), [datetimeV2](../luis-reference-prebuilt-datetimev2.md), [geographyV2](../luis-reference-prebuilt-geographyv2.md), [ordinal](../luis-reference-prebuilt-ordinal.md). +While entities are not required, they are found in most apps. The entity extracts information from the user utterance, necessary to fulfill the user's intention. There are several types of [prebuilt](/dotnet/api/microsoft.azure.cognitiveservices.language.luis.authoring.modelextensions.addprebuiltasync) and custom entities, each with their own data transformation object (DTO) models. Common prebuilt entities to add to your app include [number](../luis-reference-prebuilt-number.md), [datetimeV2](../luis-reference-prebuilt-datetimev2.md), [geographyV2](../luis-reference-prebuilt-geographyv2.md), [ordinal](../luis-reference-prebuilt-ordinal.md). It is important to know that entities are not marked with an intent. They can and usually do apply to many intents. Only the example user utterances are marked for a specific, single intent. diff --git a/articles/ai-services/luis/includes/sdk-nodejs.md b/articles/ai-services/luis/includes/sdk-nodejs.md index ccbd98510d4..af45266be2a 100644 --- a/articles/ai-services/luis/includes/sdk-nodejs.md +++ b/articles/ai-services/luis/includes/sdk-nodejs.md @@ -174,7 +174,7 @@ The `intentName` value is hard-coded to `OrderPizzaIntent` as part of the variab ## Create entities for the app -While entities are not required, they are found in most apps. The entity extracts information from the user utterance, necessary to fullfil the user's intention. There are several types of [prebuilt](/javascript/api/@azure/cognitiveservices-luis-authoring/model#addcustomprebuiltentity-string--string--prebuiltdomainmodelcreateobject--msrest-requestoptionsbase-) and custom entities, each with their own data transformation object (DTO) models. Common prebuilt entities to add to your app include [number](../luis-reference-prebuilt-number.md), [datetimeV2](../luis-reference-prebuilt-datetimev2.md), [geographyV2](../luis-reference-prebuilt-geographyv2.md), [ordinal](../luis-reference-prebuilt-ordinal.md). +While entities are not required, they are found in most apps. The entity extracts information from the user utterance, necessary to fulfill the user's intention. There are several types of [prebuilt](/javascript/api/@azure/cognitiveservices-luis-authoring/model#addcustomprebuiltentity-string--string--prebuiltdomainmodelcreateobject--msrest-requestoptionsbase-) and custom entities, each with their own data transformation object (DTO) models. Common prebuilt entities to add to your app include [number](../luis-reference-prebuilt-number.md), [datetimeV2](../luis-reference-prebuilt-datetimev2.md), [geographyV2](../luis-reference-prebuilt-geographyv2.md), [ordinal](../luis-reference-prebuilt-ordinal.md). It is important to know that entities are not marked with an intent. They can and usually do apply to many intents. Only example user utterances are marked for a specific, single intent.