From 15214dce44a1e568cb978aea874ab22930d96864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20=C4=90=E1=BB=A9c=20H=C3=A0o?= <39975444+haond10adp@users.noreply.github.com> Date: Fri, 10 Jul 2020 15:16:20 +0700 Subject: [PATCH] Update article.md --- 5-network/07-url/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.