Skip to content

Commit 2a17cd4

Browse files
author
Kyle Delaney
authored
Fix typos in directLine.ts comments (#281)
1 parent f5db3ed commit 2a17cd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/directLine.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ export interface ActivityGroup {
353353
export enum ConnectionStatus {
354354
Uninitialized, // the status when the DirectLine object is first created/constructed
355355
Connecting, // currently trying to connect to the conversation
356-
Online, // successfully connected to the converstaion. Connection is healthy so far as we know.
356+
Online, // successfully connected to the conversation. Connection is healthy so far as we know.
357357
ExpiredToken, // last operation errored out with an expired token. Possibly waiting for someone to supply a new one.
358358
FailedToConnect, // the initial attempt to connect to the conversation failed. No recovery possible.
359359
Ended // the bot ended the conversation
@@ -907,7 +907,7 @@ export class DirectLine implements IBotConnection {
907907
}
908908

909909
// Originally we used Observable.webSocket, but it's fairly opinionated and I ended up writing
910-
// a lot of code to work around their implemention details. Since WebChat is meant to be a reference
910+
// a lot of code to work around their implementation details. Since WebChat is meant to be a reference
911911
// implementation, I decided roll the below, where the logic is more purposeful. - @billba
912912
private observableWebSocket<T>() {
913913
return Observable.create((subscriber: Subscriber<T>) => {

0 commit comments

Comments
 (0)