diff --git a/guide/portuguese/csharp/hello-world/index.md b/guide/portuguese/csharp/hello-world/index.md index d3d8e0f948..c44040d5c4 100644 --- a/guide/portuguese/csharp/hello-world/index.md +++ b/guide/portuguese/csharp/hello-world/index.md @@ -30,7 +30,6 @@ using System; ## Saída: ```shell -```sh > Hello World! > Press any key to exit. diff --git a/guide/spanish/csharp/hello-world/index.md b/guide/spanish/csharp/hello-world/index.md index f1225f11a6..89777d98e9 100644 --- a/guide/spanish/csharp/hello-world/index.md +++ b/guide/spanish/csharp/hello-world/index.md @@ -30,8 +30,6 @@ using System; ## Salida: ```shell -```sh > Hello World! - > Press any key to exit. - +> Press any key to exit. ``` \ No newline at end of file diff --git a/guide/spanish/rust/installing-rust/index.md b/guide/spanish/rust/installing-rust/index.md index 0bc4ac3d2d..fe5c3c9217 100644 --- a/guide/spanish/rust/installing-rust/index.md +++ b/guide/spanish/rust/installing-rust/index.md @@ -14,7 +14,6 @@ Visite el [sitio web de rustup](https://rustup.rs) y descargue el `rustup-init.e Abre tu terminal y escribe este comando: ```shell -```sh curl https://sh.rustup.rs -sSf | sh ``` @@ -24,7 +23,6 @@ Esto buscará el instalador de `rustup` y, a su vez, `rustup` todo lo que necesi La instalación de `rustup` instalará todas las cosas relevantes para la oxidación, pero lo más importante es que se instale el compilador y el administrador de paquetes. Para verificar que todo está instalado, ejecute este comando: ```shell -```sh cargo version ```