From e5bdfca27b4cd7192fb78dc3828481e65e00c565 Mon Sep 17 00:00:00 2001 From: mdn-bot <108879845+mdn-bot@users.noreply.github.com> Date: Mon, 7 Oct 2024 00:34:44 +0000 Subject: [PATCH] ja: auto-fix Markdownlint issues --- files/ja/web/javascript/reference/global_objects/map/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/web/javascript/reference/global_objects/map/index.md b/files/ja/web/javascript/reference/global_objects/map/index.md index ac5427cbdfb4f5..757df631d24665 100644 --- a/files/ja/web/javascript/reference/global_objects/map/index.md +++ b/files/ja/web/javascript/reference/global_objects/map/index.md @@ -311,8 +311,8 @@ const keyFunc = function () {}; // 値を設定する myMap.set(keyString, "'文字列' と結び付けられた値"); -myMap.set(keyObj, 'keyObj と結び付けられた値'); -myMap.set(keyFunc, 'keyFunc と結び付けられた値'); +myMap.set(keyObj, "keyObj と結び付けられた値"); +myMap.set(keyFunc, "keyFunc と結び付けられた値"); console.log(myMap.size); // 3