From a538dd645fd0b2d00d1e9e56baaf2502ea3f7321 Mon Sep 17 00:00:00 2001 From: MikeCAT Date: Wed, 18 Sep 2024 21:51:21 +0900 Subject: [PATCH] Untranslate log message to avoid mdn-linter warning --- files/ja/web/api/gpuoutofmemoryerror/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ja/web/api/gpuoutofmemoryerror/index.md b/files/ja/web/api/gpuoutofmemoryerror/index.md index 188b1896c51853..8950882c83820f 100644 --- a/files/ja/web/api/gpuoutofmemoryerror/index.md +++ b/files/ja/web/api/gpuoutofmemoryerror/index.md @@ -43,7 +43,7 @@ device.popErrorScope().then((error) => { if (error) { // error は GPUOutOfMemoryError のオブジェクトインスタンス buffer = null; - console.error(`アウトオブメモリー、バッファが大きすぎます。エラー: ${error.message}`); + console.error(`Out of memory, buffer too large. Error: ${error.message}`); } }); ```