forked from microsoft/botframework-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typo on several documentation files (microsoft#5113)
- Loading branch information
Showing
5 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ Bot Builder provides the most comprehensive experience for building conversation | |
Please see [here](https://aka.ms/BotBuilderOverview) for an overview of the end-to-end bot development workflow. To get started, you can create a bot with [Azure Bot Service](https://docs.microsoft.com/en-us/azure/bot-service/bot-service-quickstart?view=azure-bot-service-4.0). Click [here](https://account.azure.com/signup) if you need a trial Azure subscription. | ||
|
||
## Documentation | ||
Visit azure.com for the primary [Azure Bot Service documentation page](https://docs.microsoft.com/en-us/azure/bot-service/) to learn about building bots using Bot Builder. There is additional documentation on the SDK, oriented towards contributors. The SDK currently supports four programing language: | ||
Visit azure.com for the primary [Azure Bot Service documentation page](https://docs.microsoft.com/en-us/azure/bot-service/) to learn about building bots using Bot Builder. There is additional documentation on the SDK, oriented towards contributors. The SDK currently supports four programming language: | ||
- [.NET](https://github.com/Microsoft/botbuilder-dotnet/wiki) | ||
- [JavaScript](https://github.com/microsoft/botbuilder-js/wiki) | ||
- [Python](https://github.com/Microsoft/botbuilder-python/wiki) | ||
|
@@ -102,4 +102,3 @@ Licensed under the [MIT](LICENSE) License. | |
|
||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1173,7 +1173,7 @@ Actions support dynamic typing. An implementer of an action expresses a list of | |
|
||
Entities sent within the semantic action have a specific meaning, defined by their name. For example, an action may be named `findRoute` with entities named `source` and `destination`. Sometimes, additional entities are available that do not fit a specific meaning within the action. The root [`entities`](#Entities) array is a suitable location to transmit these entities. | ||
|
||
`A7745`: Senders MAY send entities not listed in the action definition in the [`entities`](#Entities) array in the activity root. Senders SHOULD NOT send these entities in the semnatic action. | ||
`A7745`: Senders MAY send entities not listed in the action definition in the [`entities`](#Entities) array in the activity root. Senders SHOULD NOT send these entities in the semantic action. | ||
|
||
The `$instance` field carries metadata about the source of each entity. The keys of this object are identical to the entity names as peers. The values of each key is the corresponding instance metadata of type [`semanticEntityInstance`](#Semantic-entity-instance). | ||
|
||
|
@@ -1253,7 +1253,7 @@ The `semanticEntityInstance` type references to source information about where t | |
## 2018-09-27 - [email protected] | ||
|
||
* Revised reference descriptions and links | ||
* Clarified syntatic rules, revised `A2003`, added `A2007` | ||
* Clarified syntactic rules, revised `A2003`, added `A2007` | ||
* Removed `A7743` as redundant | ||
* Removed ordering requirement for semantic action entities (`A7741`) | ||
* Added `$instance` to semantic action entities | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ Cards are identified by a MIME-compatible [[5](#References)] content-type. These | |
|
||
### Transformations and display | ||
|
||
Displaying a card within a client user interface frequently requires the implementer to make specific decisions about how to order and constrain content to match the visual style of the enclosing design. Further, this specification anticipates that these limitations are largely unavoidable and aims to assist implementers in choosing a path that makes graceful degredation of functionality possible. | ||
Displaying a card within a client user interface frequently requires the implementer to make specific decisions about how to order and constrain content to match the visual style of the enclosing design. Further, this specification anticipates that these limitations are largely unavoidable and aims to assist implementers in choosing a path that makes graceful degradation of functionality possible. | ||
|
||
This section provides guidance on which transformations best achieve the goal of preserving the intent of the card. | ||
|
||
|
@@ -483,4 +483,4 @@ The `value` field contains the objective component of the fact. The value of the | |
|
||
## 2018-07-05 - [email protected] | ||
|
||
* Initial draft | ||
* Initial draft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,7 +112,7 @@ Transcripts are valid either in a well-defined ".transcript" file format, define | |
|
||
The .transcript format is JSON and allows emitters to choose whether to generate a flat array of activities or a complex object containing a flat array. This choice allows for both efficiency and extensibility. | ||
|
||
`T2100`: Valid .transcript files MUST be a serialized JSON entity. That entity MUST be either a flat array of activies or a complex object containing a `transcript` field. | ||
`T2100`: Valid .transcript files MUST be a serialized JSON entity. That entity MUST be either a flat array of activities or a complex object containing a `transcript` field. | ||
|
||
`T2101`: Processors MUST support both the array- and the object-based serialization described in `T2100`. | ||
|
||
|
@@ -169,4 +169,4 @@ Additionally, some fields become less important. For example, the [`channelId](b | |
|
||
## 2018-06-15 - [email protected] | ||
|
||
* Initial draft | ||
* Initial draft |