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.