Skip to content

Commit

Permalink
docs(Guards): Inject router in guards example
Browse files Browse the repository at this point in the history
  • Loading branch information
nathasm authored and MikeRyanDev committed Apr 22, 2016
1 parent 73ba307 commit 562c77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/overview/guards.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const authGuard = createGuard(function(http: Http, router: Router) {
return Observable.of(false);
});
}
}, [ Http ]);
}, [ Http, Router ]);
```

### Injection
Expand Down

0 comments on commit 562c77b

Please sign in to comment.