Skip to content

Commit

Permalink
Merge pull request #46 from karimdev96/main
Browse files Browse the repository at this point in the history
fix: linux command changes
  • Loading branch information
Phosphorus-M authored Dec 24, 2023
2 parents 88731f5 + 1ba7a00 commit 6a7efd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ch09-01-unrecoverable-errors-with-panic.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ check the backtrace number mentioned in the text below the listing
-->

```console
$ RUST_BACKTRACE=1 cargo run
$ export RUST_BACKTRACE=1; cargo run
thread 'main' panicked at 'index out of bounds: the len is 3 but the index is 99', src/main.rs:4:5
stack backtrace:
0: rust_begin_unwind
Expand Down
2 changes: 1 addition & 1 deletion src/ch12-05-working-with-environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ que contenga la palabra "to" en minúsculas:
establecido en `1` pero con la misma consulta `to`.

```console
$ IGNORE_CASE=1 cargo run -- to poem.txt
$ export IGNORE_CASE=1; cargo run -- to poem.txt
```

Si estás usando PowerShell, deberás establecer la variable de entorno y
Expand Down

0 comments on commit 6a7efd6

Please sign in to comment.