From 91a5cc67cf8abee828690e16b0f377ee7861a576 Mon Sep 17 00:00:00 2001
From: rituteb <47578527+rituteb@users.noreply.github.com>
Date: Sat, 2 Mar 2019 13:00:39 -0500
Subject: [PATCH] fix(guide): Update code editor references (#34960) (#35363)
---
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
.../debugging-javascript-with-browser-devtools/index.md | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/guide/arabic/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/arabic/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index a49f800c47..78b7305871 100644
--- a/guide/arabic/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/arabic/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -10,7 +10,7 @@ localeTitle: تصحيح JavaScript باستخدام متصفح Devtools
قبل القفز إلى تصحيح الأخطاء ، يتسنى لنا تسريب بعض الحقائق السرية عن _محرك فحص الشفرة الرائع_ في FCC.
-نحن نستخدم [CodeMirror](http://codemirror.net/mode/javascript/index.html) مخصصة ، كمحرر التعليمات البرمجية. يتم استخدام [دالة `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) لتقييم شفرة جافا سكريبت ممثلة كسلسلة من المحرر. عندما يتم استدعاء `eval()` ، ستنفذ المستعرضات التعليمات البرمجية الخاصة بك. سنتعلم المزيد عن سبب أهمية هذا السر في الأقسام اللاحقة من هذه المقالة.
+نحن نستخدم [Monaco Editor](https://microsoft.github.io/monaco-editor) مخصصة ، كمحرر التعليمات البرمجية. يتم استخدام [دالة `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) لتقييم شفرة جافا سكريبت ممثلة كسلسلة من المحرر. عندما يتم استدعاء `eval()` ، ستنفذ المستعرضات التعليمات البرمجية الخاصة بك. سنتعلم المزيد عن سبب أهمية هذا السر في الأقسام اللاحقة من هذه المقالة.
## الآن ننتقل إلى الحيل:
diff --git a/guide/chinese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/chinese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index 8e00e79799..a1aa0cf1c0 100644
--- a/guide/chinese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/chinese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -10,7 +10,7 @@ localeTitle: 使用浏览器Devtools调试JavaScript
在进入调试之前,让我们泄漏一些有关FCC _真棒代码检查引擎的_秘密事实。
-我们使用自定义的[CodeMirror](http://codemirror.net/mode/javascript/index.html)作为代码编辑器。 [`eval()`函数](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval)用于评估编辑器中表示为字符串的JavaScript代码。调用`eval()` ,浏览器将本机执行您的代码。我们将在本文后面的部分中了解更多为什么这个秘密很重要。
+我们使用自定义的[Monaco Editor](https://microsoft.github.io/monaco-editor)作为代码编辑器。 [`eval()`函数](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval)用于评估编辑器中表示为字符串的JavaScript代码。调用`eval()` ,浏览器将本机执行您的代码。我们将在本文后面的部分中了解更多为什么这个秘密很重要。
## 现在转向技巧:
diff --git a/guide/english/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/english/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index 34ff16a4c8..7170a86a4e 100644
--- a/guide/english/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/english/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -9,7 +9,7 @@ In this article we will tell you some of the coolest tricks, to debug using the
Before jumping into debugging let's leak out some secret facts about that _awesome code checking engine_ at FCC.
-We use a customized CodeMirror, as the code editor. A `eval()` function is used to evaluate the JavaScript code represented as a string from the editor. When `eval()` is called, browsers will natively execute your code. We will learn more why this secret is important in later sections of this article.
+We use a customized Monaco Editor, as the code editor. A `eval()` function is used to evaluate the JavaScript code represented as a string from the editor. When `eval()` is called, browsers will natively execute your code. We will learn more why this secret is important in later sections of this article.
## Now moving on to the tricks:
diff --git a/guide/portuguese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/portuguese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index f5aa904b1c..3a38c843fb 100644
--- a/guide/portuguese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/portuguese/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -10,7 +10,7 @@ Neste artigo, contaremos alguns dos truques mais legais para depurar usando as f
Antes de entrar na depuração, vamos divulgar alguns fatos secretos sobre o _incrível mecanismo de verificação de código_ da FCC.
-Nós usamos um [CodeMirror](http://codemirror.net/mode/javascript/index.html) personalizado, como o editor de código. Uma [função `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) é usada para avaliar o código JavaScript representado como uma string do editor. Quando `eval()` é chamado, os navegadores executam seu código nativamente. Vamos aprender mais por que esse segredo é importante nas próximas seções deste artigo.
+Nós usamos um [Monaco Editor](https://microsoft.github.io/monaco-editor) personalizado, como o editor de código. Uma [função `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) é usada para avaliar o código JavaScript representado como uma string do editor. Quando `eval()` é chamado, os navegadores executam seu código nativamente. Vamos aprender mais por que esse segredo é importante nas próximas seções deste artigo.
## Agora seguindo para os truques:
diff --git a/guide/russian/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/russian/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index d07bc9ab56..1636cfe308 100644
--- a/guide/russian/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/russian/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -10,7 +10,7 @@ localeTitle: Отладка JavaScript с помощью браузера Devtoo
Прежде чем перейти к отладке, вы можете пропустить некоторые секретные факты об этом _замечательном механизме проверки кода_ в FCC.
-Мы используем настраиваемый [CodeMirror](http://codemirror.net/mode/javascript/index.html) , как редактор кода. Функция [`eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) используется для оценки кода JavaScript, представленного в виде строки из редактора. Когда вызывается `eval()` , браузеры будут выполнять ваш код. Мы узнаем больше, почему этот секрет важен в последующих разделах этой статьи.
+Мы используем настраиваемый [Monaco Editor](https://microsoft.github.io/monaco-editor) , как редактор кода. Функция [`eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) используется для оценки кода JavaScript, представленного в виде строки из редактора. Когда вызывается `eval()` , браузеры будут выполнять ваш код. Мы узнаем больше, почему этот секрет важен в последующих разделах этой статьи.
## Теперь перейдем к трюкам:
diff --git a/guide/spanish/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md b/guide/spanish/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
index 368e996c04..3df8f2a314 100644
--- a/guide/spanish/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
+++ b/guide/spanish/javascript/tutorials/debugging-javascript-with-browser-devtools/index.md
@@ -10,7 +10,7 @@ En este artículo, te contaremos algunos de los trucos más interesantes para de
Antes de saltar a la depuración, podemos filtrar algunos datos secretos sobre ese _increíble motor de verificación de códigos_ en FCC.
-Usamos un [CodeMirror](http://codemirror.net/mode/javascript/index.html) personalizado, como el editor de código. Se utiliza una [función `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) para evaluar el código JavaScript representado como una cadena desde el editor. Cuando se llama a `eval()` , los navegadores ejecutarán su código de forma nativa. Aprenderemos más por qué este secreto es importante en las secciones posteriores de este artículo.
+Usamos un [Monaco Editor](https://microsoft.github.io/monaco-editor) personalizado, como el editor de código. Se utiliza una [función `eval()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) para evaluar el código JavaScript representado como una cadena desde el editor. Cuando se llama a `eval()` , los navegadores ejecutarán su código de forma nativa. Aprenderemos más por qué este secreto es importante en las secciones posteriores de este artículo.
## Ahora pasamos a los trucos: