Auto merge of #176 - danwilhelm:dan-minor-text, r=komaeda

chore: Minor text updates

- Make the default rustlings executable text consistent with the README and install script by adding `--force`.

- Remove a missed highlighting character from Issue #133.
This commit is contained in:
bors 2019-06-11 09:38:18 +00:00
commit ad8e6dc63b
2 changed files with 1 additions and 3 deletions

View File

@ -9,7 +9,7 @@ Let's make sure you're up to speed:
- You have installed Rust language support for your editor
- You have locally installed the `rustlings` command by running:
cargo install --path .
cargo install --force --path .
If you've done all of this (or even most of it), congrats! You're ready
to start working with Rust.

View File

@ -87,8 +87,6 @@ fn main() {
let text = fs::read_to_string("default_out.txt").unwrap();
println!("{}", text);
}
println!("\x1b[0m");
}
fn watch(exercises: &[Exercise]) -> notify::Result<()> {