aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormongolyy <mongolyy@gmail.com>2022-03-12 13:45:54 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-03-12 21:36:02 +0900
commit2a56cc59217fd5a670c0585179bd2bf33f9430ed (patch)
treec3100880c230ecc28257dbd8d62fceda7f5af63f
parente58841cda527eabdd6bbc36007e75bb7b846d89a (diff)
downloadtranslated-content-2a56cc59217fd5a670c0585179bd2bf33f9430ed.tar.gz
translated-content-2a56cc59217fd5a670c0585179bd2bf33f9430ed.tar.bz2
translated-content-2a56cc59217fd5a670c0585179bd2bf33f9430ed.zip
数字の前後に空白を入れる
-rw-r--r--files/ja/web/api/cookiestore/get/index.md2
-rw-r--r--files/ja/web/api/cookiestore/index.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/api/cookiestore/get/index.md b/files/ja/web/api/cookiestore/get/index.md
index bdcc07da9a..2f6f6dbb9e 100644
--- a/files/ja/web/api/cookiestore/get/index.md
+++ b/files/ja/web/api/cookiestore/get/index.md
@@ -73,7 +73,7 @@ var cookie = CookieStore.get(options);
## 例
-この例では、"cookie1" という名前の Cookie を返します。もし Cookie が見つかれば、プロミスの結果は1つの Cookie の詳細を含むオブジェクトになります。
+この例では、"cookie1" という名前の Cookie を返します。もし Cookie が見つかれば、プロミスの結果は 1 つの Cookie の詳細を含むオブジェクトになります。
```js
let cookie = cookieStore.get('cookie1');
diff --git a/files/ja/web/api/cookiestore/index.md b/files/ja/web/api/cookiestore/index.md
index 2ec1548cd3..c3a723aa6e 100644
--- a/files/ja/web/api/cookiestore/index.md
+++ b/files/ja/web/api/cookiestore/index.md
@@ -21,7 +21,7 @@ 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")}} を返します。
- {{domxref("CookieStore.set()")}}