aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/ja/web/api/cookiestore/index.md4
-rw-r--r--files/ja/web/api/cookiestore/set/index.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/files/ja/web/api/cookiestore/index.md b/files/ja/web/api/cookiestore/index.md
index e46e187159..45ab80f27b 100644
--- a/files/ja/web/api/cookiestore/index.md
+++ b/files/ja/web/api/cookiestore/index.md
@@ -21,9 +21,9 @@ browser-compat: api.CookieStore
- {{domxref("CookieStore.delete()")}}
- : `delete()` メソッドは与えられた名前またはオプションオブジェクトを持つ Cookie を削除します。削除が完了すると解決される {{jsxref("Promise")}} が返されます。
- {{domxref("CookieStore.get()")}}
- - : `get()` メソッドは与えられた名前またはオプションオブジェクトで 1 つの Cookie を取得します。1 つのCookieの詳細に解決される {{jsxref("Promise")}} を返します。
+ - : `get()` メソッドは与えられた名前またはオプションオブジェクトで 1 つの Cookie を取得します。1 つの Cookie の詳細に解決される {{jsxref("Promise")}} を返します。
- {{domxref("CookieStore.getAll()")}}
- - : `getAll()` メソッドはマッチするすべてのCookieを取得します。Cookie のリストに解決される {{jsxref("Promise")}} を返します。
+ - : `getAll()` メソッドはマッチするすべての Cookie を取得します。Cookie のリストに解決される {{jsxref("Promise")}} を返します。
- {{domxref("CookieStore.set()")}}
- : `set()` メソッドは与えられた名前と値またはオプションオブジェクトを Cookie に設定し、Cookie が設定されると解決される {{jsxref("Promise")}} を返します。
diff --git a/files/ja/web/api/cookiestore/set/index.md b/files/ja/web/api/cookiestore/set/index.md
index b375b088e0..bd407b31da 100644
--- a/files/ja/web/api/cookiestore/set/index.md
+++ b/files/ja/web/api/cookiestore/set/index.md
@@ -64,7 +64,7 @@ Cookie の設定が完了すると {{jsxref("Undefined")}} に解決される {{
- {{jsxref("TypeError")}}
- : 与えられた値での Cookie の設定に失敗した場合にスローされます。
- {{domxref("DOMException")}} `SecurityError`
- - : オリジンがURLに {{glossary("serialize")}} されない場合にスローされます。
+ - : オリジンが URL に {{glossary("serialize")}} されない場合にスローされます。
## 例