From 98cb97479658d978412417a30df6196d12539436 Mon Sep 17 00:00:00 2001 From: JB Nizet Date: Thu, 23 Mar 2017 01:14:11 +0100 Subject: [PATCH] docs(router): fix typo in ParamMap api doc (#15397) --- packages/router/src/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/src/shared.ts b/packages/router/src/shared.ts index 1ca5dfbcf6..e36009bc72 100644 --- a/packages/router/src/shared.ts +++ b/packages/router/src/shared.ts @@ -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.