From 562c77b23c32b4de6febccf40ee683df4eb4a204 Mon Sep 17 00:00:00 2001 From: Nathan Smith Date: Thu, 21 Apr 2016 23:46:31 -0400 Subject: [PATCH] docs(Guards): Inject router in guards example --- docs/overview/guards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/guards.md b/docs/overview/guards.md index 650775a..f0e8c1c 100644 --- a/docs/overview/guards.md +++ b/docs/overview/guards.md @@ -65,7 +65,7 @@ const authGuard = createGuard(function(http: Http, router: Router) { return Observable.of(false); }); } -}, [ Http ]); +}, [ Http, Router ]); ``` ### Injection