Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
No periods on errors.
  • Loading branch information
jashkenas committed Feb 7, 2011
1 parent f1e0f6b commit 7d4d527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backbone.js
Expand Up @@ -727,7 +727,7 @@
// Start the hash change handling, returning `true` if the current URL matches
// an existing route, and `false` otherwise.
start : function() {
if (historyStarted) throw new Error("Backbone.history has already been started.");
if (historyStarted) throw new Error("Backbone.history has already been started");
var docMode = document.documentMode;
var oldIE = ($.browser.msie && (!docMode || docMode <= 7));
if (oldIE) {
Expand Down

0 comments on commit 7d4d527

Please sign in to comment.