Skip to content

Commit 79e2567

Browse files
authored
Merge pull request #777 from hexlet-basics/remove-replit
remove replit
2 parents 59e493a + 0061def commit 79e2567

File tree

179 files changed

+7
-319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+7
-319
lines changed

modules/10-basics/20-comments/description.es.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ theory: |
4141
console.log('I am the King');
4242
```
4343
44-
https://replit.com/@hexlet/helloworld
4544
4645
Estos comentarios generalmente se utilizan para la documentación del código, por ejemplo, en el caso de las funciones.
4746

modules/10-basics/20-comments/en/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,4 @@ console.log('I am the King'); // For Lannisters!
2424
console.log('I am the King');
2525
```
2626

27-
https://replit.com/@hexlet/helloworld
28-
2927
Such comments usually clarify the purpose of pieces of code.

modules/10-basics/20-comments/es/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,4 @@ Los *comentarios de varias líneas* comienzan con `/*` y terminan con `*/`.
3737
console.log('I am the King');
3838
```
3939

40-
https://replit.com/@hexlet/helloworld
41-
4240
Estos comentarios generalmente se utilizan para la documentación del código, por ejemplo, en el caso de las funciones.

modules/10-basics/20-comments/ru/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,4 @@ console.log('I am the King'); // For Lannisters!
3737
console.log('I am the King');
3838
```
3939

40-
https://replit.com/@hexlet/helloworld
41-
4240
Такие комментарии, обычно, используют для документирования кода, например, функций.

modules/10-basics/40-instructions/description.es.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ theory: |
1111
console.log('Dracarys!');
1212
```
1313
14-
https://replit.com/@hexlet/js-basics-instructions
1514
1615
Al ejecutar este código, se mostrarán en pantalla las dos frases de forma secuencial:
1716

modules/10-basics/40-instructions/es/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ console.log('Mother of Dragons.');
77
console.log('Dracarys!');
88
```
99

10-
https://replit.com/@hexlet/js-basics-instructions
11-
1210
Al ejecutar este código, se mostrarán en pantalla las dos frases de forma secuencial:
1311

1412
<pre class='hexlet-basics-output'>

modules/10-basics/40-instructions/ru/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ console.log('Mother of Dragons.');
77
console.log('Dracarys!');
88
```
99

10-
https://replit.com/@hexlet/js-basics-instructions
11-
1210
При запуске этого кода, на экран последовательно выводятся два предложения:
1311

1412
<pre class='hexlet-basics-output'>

modules/10-basics/45-testing/description.es.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ theory: |
3030
3131
Expected es el valor esperado y Received es el valor que devolvió tu código.
3232
33-
Además de nuestras pruebas, es muy útil experimentar con el código en la consola del [navegador](https://developer.mozilla.org/es/docs/Tools/Consola_de_navegador). En cualquier situación en la que no entiendas algo o quieras probar diferentes formas de uso, no dudes en abrir la consola e ingresar el código allí. Sería ideal si ejecutas todo el código presente en las lecciones por tu cuenta. Además de la consola, es útil usar el servicio [repl.it](https://repl.it/languages/javascript).
33+
Además de nuestras pruebas, es muy útil experimentar con el código en la consola del [navegador](https://developer.mozilla.org/es/docs/Tools/Consola_de_navegador). En cualquier situación en la que no entiendas algo o quieras probar diferentes formas de uso, no dudes en abrir la consola e ingresar el código allí. Sería ideal si ejecutas todo el código presente en las lecciones por tu cuenta.
3434
3535
---
3636

modules/10-basics/45-testing/en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ One of your tasks in the following lessons will be to write a function that perf
2424
"ello, World!"
2525
</pre>
2626

27-
In addition to our tests, it's very useful to experiment with code in the [browser console](https://developer.mozilla.org/en-US/docs/Tools/Browser_Console). When something isn't clear to you, or you want to experiment with code, feel free to do all of this in the console. Ideally, it's best to execute all the code given in the lessons on your own. In addition to the console, you can also use [repl.it](https://repl.it/languages/javascript).
27+
In addition to our tests, it's very useful to experiment with code in the [browser console](https://developer.mozilla.org/en-US/docs/Tools/Browser_Console). When something isn't clear to you, or you want to experiment with code, feel free to do all of this in the console.
2828

2929
Sometimes when creating a solution, it may seem that you have done everything correctly, but the system has got into a huff and won't accept your solution. Such cases are borderline impossible. Failed tests simply won't get as far as the site, they are automatically run after each change. In the vast majority of cases (all our projects have been run millions of times in total over many years) the error is in the solution code. It can be very imperceptible, maybe you used the wrong punctuation, or you used upper case instead of lower case, or you missed a comma. Other cases are more complicated. Maybe your solution works for one set of inputs, but not for another. So always read the instructions and test your output carefully. There will almost certainly be some sign of an error.
3030

modules/10-basics/45-testing/es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Aquí tienes un ejemplo sencillo: en una de las futuras lecciones, tendrás que
2626

2727
Expected es el valor esperado y Received es el valor que devolvió tu código.
2828

29-
Además de nuestras pruebas, es muy útil experimentar con el código en la consola del [navegador](https://developer.mozilla.org/es/docs/Tools/Consola_de_navegador). En cualquier situación en la que no entiendas algo o quieras probar diferentes formas de uso, no dudes en abrir la consola e ingresar el código allí. Sería ideal si ejecutas todo el código presente en las lecciones por tu cuenta. Además de la consola, es útil usar el servicio [repl.it](https://repl.it/languages/javascript).
29+
Además de nuestras pruebas, es muy útil experimentar con el código en la consola del [navegador](https://developer.mozilla.org/es/docs/Tools/Consola_de_navegador). En cualquier situación en la que no entiendas algo o quieras probar diferentes formas de uso, no dudes en abrir la consola e ingresar el código allí.
3030

3131
---
3232

0 commit comments

Comments
 (0)