Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vlajos authored and matsko committed Mar 27, 2018
1 parent 6774e24 commit 38b7bdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/shared.spec.ts
Expand Up @@ -38,7 +38,7 @@ describe('ParamsMap', () => {
expect(map.get('name')).toEqual(null);
});

it('should return `[]` when a mulitple valued element is absent', () => {
it('should return `[]` when a multiple valued element is absent', () => {
const map = convertToParamMap({});
expect(map.getAll('name')).toEqual([]);
});
Expand Down
2 changes: 1 addition & 1 deletion test/url_tree.spec.ts
Expand Up @@ -85,7 +85,7 @@ describe('UrlTree', () => {
expect(containsTree(t1, t2, false)).toBe(true);
});

it('should return true container has its paths splitted into multiple segments', () => {
it('should return true container has its paths split into multiple segments', () => {
const t1 = serializer.parse('/one/(two//left:three)');
const t2 = serializer.parse('/one/two');
expect(containsTree(t1, t2, false)).toBe(true);
Expand Down

0 comments on commit 38b7bdc

Please sign in to comment.