From 03cfe675003b6ae823e41b92bc4f7c45f83872c5 Mon Sep 17 00:00:00 2001 From: Dan Wilhelm Date: Mon, 10 Jun 2019 20:20:22 -0700 Subject: [PATCH 1/2] chore: Make install instructions consistent --- default_out.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default_out.txt b/default_out.txt index 6c437ea..b34659b 100644 --- a/default_out.txt +++ b/default_out.txt @@ -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. From f72e0ca9790f2dc8a2839c6084a540dd9912a0a7 Mon Sep 17 00:00:00 2001 From: Dan Wilhelm Date: Mon, 10 Jun 2019 20:24:18 -0700 Subject: [PATCH 2/2] chore: Remove missed highlighting char from Issue #133 --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 85c91b9..f78f13c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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<()> {