docs(router): minor typo (#18226)

Fix a minor typo in the description of a router spec.
This commit is contained in:
Lars Gyrup Brink Nielsen 2017-07-20 18:32:34 +02:00 committed by Miško Hevery
parent 410f21c75c
commit c67bad4f43
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ describe('Router', () => {
describe('setUpLocationChangeListener', () => {
beforeEach(() => { TestBed.configureTestingModule({imports: [RouterTestingModule]}); });
it('should be indempotent', inject([Router, Location], (r: Router, location: Location) => {
it('should be idempotent', inject([Router, Location], (r: Router, location: Location) => {
r.setUpLocationChangeListener();
const a = (<any>r).locationSubscription;
r.setUpLocationChangeListener();