diff options
author | Scott Nelson <Scott.D.Nelson@dartmouth.edu> | 2015-01-25 15:44:38 -0800 |
---|---|---|
committer | Scott Nelson <Scott.D.Nelson@dartmouth.edu> | 2015-01-25 15:44:38 -0800 |
commit | 2b5a8e233e94a7afecc2571082292a6f354c17ce (patch) | |
tree | f7c9a814747e597a242c5453e51f7867264e592e | |
parent | f6bae17e6b564343734b0f1749225c0cf391af86 (diff) | |
download | backbonetutorials-2b5a8e233e94a7afecc2571082292a6f354c17ce.zip backbonetutorials-2b5a8e233e94a7afecc2571082292a6f354c17ce.tar.gz backbonetutorials-2b5a8e233e94a7afecc2571082292a6f354c17ce.tar.bz2 |
Fix typo 'to'
-rw-r--r-- | _posts/2011-01-27-what-is-a-router.md | 2 |
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 |