summaryrefslogtreecommitdiffstats
path: root/src/doc/rust-by-example/src/hello/comment.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rust-by-example/src/hello/comment.md')
-rw-r--r--src/doc/rust-by-example/src/hello/comment.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust-by-example/src/hello/comment.md b/src/doc/rust-by-example/src/hello/comment.md
index 5027f0a22..4ea6dcd44 100644
--- a/src/doc/rust-by-example/src/hello/comment.md
+++ b/src/doc/rust-by-example/src/hello/comment.md
@@ -14,7 +14,7 @@ a few different varieties:
fn main() {
// This is an example of a line comment.
// There are two slashes at the beginning of the line.
- // And nothing written inside these will be read by the compiler.
+ // And nothing written after these will be read by the compiler.
// println!("Hello, world!");