diff --git a/5-network/07-url/article.md b/5-network/07-url/article.md index 591a55af..c4140045 100644 --- a/5-network/07-url/article.md +++ b/5-network/07-url/article.md @@ -88,7 +88,7 @@ It provides convenient methods for search parameters: - **`delete(name)`** -- remove 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`), -- **`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, - **`sort()`** -- sort parameters by name, rarely needed, - ...and it's also iterable, similar to `Map`.