1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-09-03 14:26:17 +03:00

fix commands in contribution document

Этот коммит содержится в:
rhysd
2023-05-10 17:04:06 +09:00
родитель 68f4e0d3c4
Коммит d67b29fa22

Просмотреть файл

@@ -50,7 +50,7 @@ dbg!(&some_value);
Then redirect stderr to some file:
```sh
cargo run -- --example minimal 2>debug.txt
cargo run --example minimal 2>debug.txt
```
Then the debug prints are output to the `debug.txt` file. If timing is important or you want to see the output in real-time,
@@ -58,7 +58,7 @@ printing the file content with `tail` command would be useful.
```sh
# In a terminal, reproduce the issue
cargo run -- --example minimal 2>debug.txt
cargo run --example minimal 2>debug.txt
# In another terminal, run `tail` command to monitor the content
tail -F debug.txt