Skip to content

Commit 7e01e9b

Browse files
tony-xiacleemullins
authored andcommitted
Fixed several typos (#1422)
1 parent 87aca49 commit 7e01e9b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

libraries/botbuilder-azure/src/cosmosDbStorage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class CosmosDbStorage implements Storage {
8686
private databaseCreationRequestOption: RequestOptions;
8787

8888
/**
89-
* Creates a new ConsmosDbStorage instance.
89+
* Creates a new CosmosDbStorage instance.
9090
*
9191
* @param settings Setting to configure the provider.
9292
* @param connectionPolicyConfigurator (Optional) An optional delegate that accepts a ConnectionPolicy for customizing policies. More information at http://azure.github.io/azure-documentdb-node/global.html#ConnectionPolicy

libraries/botbuilder-core/src/autoSaveStateMiddleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class AutoSaveStateMiddleware implements Middleware {
5050
*/
5151
public botStateSet: BotStateSet;
5252
/**
53-
* Creates a new AutoSaveStateiMiddleware instance.
53+
* Creates a new AutoSaveStateMiddleware instance.
5454
* @param botStates One or more BotState plugins to automatically save at the end of the turn.
5555
*/
5656
constructor(...botStates: BotState[]) {

libraries/botbuilder-core/src/showTypingMiddleware.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import { Middleware } from './middlewareSet';
1010
import { TurnContext } from './turnContext';
1111

1212
/**
13-
* Middleware that will send a typing indicator autmatically for each message.
13+
* Middleware that will send a typing indicator automatically for each message.
1414
*
1515
* @remarks
1616
* When added, this middleware will send typing activities back to the user when a Message activity
17-
* is receieved to let them know that the bot has received the message and is working on the response.
17+
* is received to let them know that the bot has received the message and is working on the response.
1818
* You can specify a delay in milliseconds before the first typing activity is sent and then a frequency,
1919
* also in milliseconds which determines how often another typing activity is sent. Typing activities
2020
* will continue to be sent until your bot sends another message back to the user
@@ -67,7 +67,7 @@ export class ShowTypingMiddleware implements Middleware {
6767
};
6868

6969
// Sending the Activity directly via the Adapter avoids other middleware and avoids setting the
70-
// responded flag. However this also requires tha tthe conversation reference details are explicitly added.
70+
// responded flag. However this also requires that the conversation reference details are explicitly added.
7171
const conversationReference: Partial<ConversationReference> =
7272
TurnContext.getConversationReference(context.activity);
7373
typingActivity = TurnContext.applyConversationReference(typingActivity, conversationReference);
@@ -109,7 +109,7 @@ export class ShowTypingMiddleware implements Middleware {
109109
};
110110

111111
// Sending the Activity directly via the Adapter avoids other middleware and avoids setting the
112-
// responded flag. However this also requires tha tthe conversation reference details are explicitly added.
112+
// responded flag. However this also requires that the conversation reference details are explicitly added.
113113
const conversationReference: Partial<ConversationReference> = TurnContext.getConversationReference(context.activity);
114114
typingActivity = TurnContext.applyConversationReference(typingActivity, conversationReference);
115115

libraries/botbuilder-core/src/transcriptLogger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export interface TranscriptStore extends TranscriptLogger {
208208
* Get activities for a conversation (Aka the transcript)
209209
* @param channelId Channel Id.
210210
* @param conversationId Conversation Id.
211-
* @param continuationToken Continuatuation token to page through results.
211+
* @param continuationToken Continuation token to page through results.
212212
* @param startDate Earliest time to include.
213213
*/
214214
getTranscriptActivities(
@@ -221,7 +221,7 @@ export interface TranscriptStore extends TranscriptLogger {
221221
/**
222222
* List conversations in the channelId.
223223
* @param channelId Channel Id.
224-
* @param continuationToken Continuatuation token to page through results.
224+
* @param continuationToken Continuation token to page through results.
225225
*/
226226
listTranscripts(channelId: string, continuationToken?: string): Promise<PagedResult<TranscriptInfo>>;
227227

0 commit comments

Comments
 (0)