Merge pull request #2001 from haond10adp/master

typo
This commit is contained in:
Ilya Kantor 2020-07-18 14:08:30 +03:00 committed by GitHub
commit 859fc13f26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,7 @@ It provides convenient methods for search parameters:
- **`delete(name)`** -- remove the parameter by `name`, - **`delete(name)`** -- remove the parameter by `name`,
- **`get(name)`** -- get the parameter by `name`, - **`get(name)`** -- get the parameter by `name`,
- **`getAll(name)`** -- get all parameters with the same `name` (that's possible, e.g. `?user=John&user=Pete`), - **`getAll(name)`** -- get all parameters with the same `name` (that's possible, e.g. `?user=John&user=Pete`),
- **`has(name)`** -- check for the existance of the parameter by `name`, - **`has(name)`** -- check for the existence of the parameter by `name`,
- **`set(name, value)`** -- set/replace the parameter, - **`set(name, value)`** -- set/replace the parameter,
- **`sort()`** -- sort parameters by name, rarely needed, - **`sort()`** -- sort parameters by name, rarely needed,
- ...and it's also iterable, similar to `Map`. - ...and it's also iterable, similar to `Map`.