From 03385cc9f4f157cec2e5fd05f35e6af646055908 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 14 Sep 2021 11:07:46 +0900 Subject: Web/API以下の文書内のリンクURLを正規化 (#2360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正 --- files/ja/web/api/console/assert/index.html | 2 +- files/ja/web/api/console/error/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'files/ja/web/api/console') diff --git a/files/ja/web/api/console/assert/index.html b/files/ja/web/api/console/assert/index.html index eb8b92bbf7..df96e31b21 100644 --- a/files/ja/web/api/console/assert/index.html +++ b/files/ja/web/api/console/assert/index.html @@ -45,7 +45,7 @@ console.assert(assertion, msg [, subst1, ..., sub for (let number = 2; number <= 5; number += 1) { console.log('the # is ' + number); console.assert(number % 2 === 0, {number: number, errorMsg: errorMsg}); - // ES2015 object property shorthand を使った版 + // ES2015 object property shorthand を使った版 // console.assert(number % 2 === 0, {number, errorMsg}); } // 出力: diff --git a/files/ja/web/api/console/error/index.html b/files/ja/web/api/console/error/index.html index 5655e1e99a..7b6c677eb9 100644 --- a/files/ja/web/api/console/error/index.html +++ b/files/ja/web/api/console/error/index.html @@ -39,7 +39,7 @@ console.exception(msg [, subst1, ..., substN]);
msg 内の置換文字列を置換するJavaScript オブジェクト。これにより、出力の書式の詳細な制御が可能となります。
-

詳細については、{{domxref("console")}} ドキュメント内の コンソールへのテキスト出力 を参照してください。

+

詳細については、{{domxref("console")}} ドキュメント内の コンソールへのテキスト出力 を参照してください。

仕様

-- cgit v1.2.3-54-g00ecf