Skip to content

Commit

Permalink
Fix awkward passage (#802)
Browse files Browse the repository at this point in the history
Co-authored-by: John Baber-Lucero <orangepen@frundle.com>
  • Loading branch information
jbaber and John Baber-Lucero authored Dec 27, 2024
1 parent a0cef1d commit a0c08b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/docs/tutorials/json-editor/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ use std::io;

You might notice that we are using `stderr` for our output. This is because we want to allow the
user to pipe their completed json to other programs like `ratatui-tutorial > output.json`. To do
this, we are utilizing the fact that `stderr` is piped differently than `stdout`, and rendering out
project in `stderr`, and printout our completed json in `stdout`.
this, we are using the fact that `stderr` is piped differently than `stdout`. We render output
to `stderr`, and print our completed json to `stdout`.

For more information, please read the
[crossterm documentation](https://docs.rs/crossterm/latest/crossterm/)
Expand Down

0 comments on commit a0c08b6

Please sign in to comment.