Skip to content

Commit 87001a6

Browse files
committed
The string doesn't have to be a raw string
1 parent a610fc1 commit 87001a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ fn rustc_exists() -> bool {
411411
.unwrap_or(false)
412412
}
413413

414-
const DEFAULT_OUT: &str = r#"Thanks for installing Rustlings!
414+
const DEFAULT_OUT: &str = "Thanks for installing Rustlings!
415415
416416
Is this your first time? Don't worry, Rustlings was made for beginners! We are
417417
going to teach you a lot of things about Rust, but before we can get
@@ -437,7 +437,7 @@ started, here's a couple of notes about how Rustlings operates:
437437
autocompletion, run the command `rustlings lsp`.
438438
439439
Got all that? Great! To get started, run `rustlings watch` in order to get the first
440-
exercise. Make sure to have your editor open!"#;
440+
exercise. Make sure to have your editor open!";
441441

442442
const FENISH_LINE: &str = "+----------------------------------------------------+
443443
| You made it to the Fe-nish line! |

0 commit comments

Comments
 (0)