summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_posts/2011-01-27-what-is-a-router.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2011-01-27-what-is-a-router.md b/_posts/2011-01-27-what-is-a-router.md
index 9d82057..299755d 100644
--- a/_posts/2011-01-27-what-is-a-router.md
+++ b/_posts/2011-01-27-what-is-a-router.md
@@ -51,7 +51,7 @@ Most conventional frameworks allow you to define routes that contain a mix of st
var AppRouter = Backbone.Router.extend({
routes: {
"posts/:id": "getPost",
- "*actions": "defaultRoute" // Backbone will try match the route above first
+ "*actions": "defaultRoute" // Backbone will try to match the route above first
}
});
// Instantiate the router