File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ export interface ActivityGroup {
353353export 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 > ) => {
You can’t perform that action at this time.
0 commit comments