docs(router): fix typo in ParamMap api doc (#15397)

This commit is contained in:
JB Nizet 2017-03-23 01:14:11 +01:00 committed by Igor Minar
parent 8b414222aa
commit 98cb974796
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ export type Params = {
* Matrix and Query parameters.
*
* `ParamMap` makes it easier to work with parameters as they could have either a single value or
* multiple value. Because this should be know by the user calling `get` or `getAll` returns the
* multiple value. Because this should be known by the user, calling `get` or `getAll` returns the
* correct type (either `string` or `string[]`).
*
* The API is inspired by the URLSearchParams interface.