projects
/
rust_exercises.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe189a6
)
Grammar typo (#7)
author
Ernie Hershey
<github@ernie.org>
Fri, 17 May 2024 14:59:04 +0000
(10:59 -0400)
committer
GitHub
<noreply@github.com>
Fri, 17 May 2024 14:59:04 +0000
(16:59 +0200)
exercises/01_intro/00_welcome/src/lib.rs
patch
|
blob
|
history
diff --git
a/exercises/01_intro/00_welcome/src/lib.rs
b/exercises/01_intro/00_welcome/src/lib.rs
index
f19893b
..
ec95b6c
100644
(file)
--- a/
exercises/01_intro/00_welcome/src/lib.rs
+++ b/
exercises/01_intro/00_welcome/src/lib.rs
@@
-5,7
+5,7
@@
// explanations.
// There are various ways to write comments in Rust, each with its own purpose.
// For now we'll stick to the most common one: the line comment.
-// Everything from `//` to the end of the line is
a considered
comment.
+// Everything from `//` to the end of the line is
considered a
comment.
// Exercises will include `TODO`, `todo!()` or `__` markers to draw your attention to the lines
// where you need to write code.