Skip to content

Commit

Permalink
Fixed a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Major committed Jan 16, 2016
1 parent da0d3c5 commit f77864e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -205,7 +205,7 @@
}
}
catch (e) {
connection.log("Error occured when stopping foreverFrame transport. Message = " + e.message + ".");
connection.log("Error occurred when stopping foreverFrame transport. Message = " + e.message + ".");
}
}

Expand Down
Expand Up @@ -212,7 +212,7 @@
}
});

// This will only ever pass after an error has occured via the poll ajax procedure.
// This will only ever pass after an error has occurred via the poll ajax procedure.
if (reconnecting && raiseReconnect === true) {
// We wait to reconnect depending on how many times we've failed to reconnect.
// This is essentially a heuristic that will exponentially increase in wait time before
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Core/IRequest.cs
Expand Up @@ -45,7 +45,7 @@ public interface IRequest
IPrincipal User { get; }

/// <summary>
/// Gets the owin enviornment
/// Gets the owin environment
/// </summary>
IDictionary<string, object> Environment { get; }

Expand Down
Expand Up @@ -406,7 +406,7 @@ protected virtual void Stop(Exception ex)
}
catch (Exception stopEx)
{
Trace.TraceError("{0}Error occured while stopping SQL notification listener: {1}", TracePrefix, stopEx);
Trace.TraceError("{0}Error occurred while stopping SQL notification listener: {1}", TracePrefix, stopEx);
}
}

Expand Down
Expand Up @@ -17,7 +17,7 @@
}
}
catch (e) {
console.log("Network Mock Error occured, unable to stop iframe. Message = " + e.message);
console.log("Network Mock Error occurred, unable to stop iframe. Message = " + e.message);
}
}

Expand Down

0 comments on commit f77864e

Please sign in to comment.