diff options
author | mongolyy <mongolyy@gmail.com> | 2022-03-12 14:25:22 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-03-12 21:36:02 +0900 |
commit | 1651ef597c75e45f8e7d09df0f23d8b4d488449d (patch) | |
tree | 57e8ea0ac752f17e8ce7ac27b97034c1bcbfb3d9 /files | |
parent | 53b415c8dc4653dacc9208ed5700f328dfde99de (diff) | |
download | translated-content-1651ef597c75e45f8e7d09df0f23d8b4d488449d.tar.gz translated-content-1651ef597c75e45f8e7d09df0f23d8b4d488449d.tar.bz2 translated-content-1651ef597c75e45f8e7d09df0f23d8b4d488449d.zip |
単語の前後に空白を追加
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/api/cookiestore/index.md | 4 | ||||
-rw-r--r-- | files/ja/web/api/cookiestore/set/index.md | 2 |
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")}} されない場合にスローされます。 ## 例 |