From 1d6342fcd655e6c5679c4e1ec35a2920ff772991 Mon Sep 17 00:00:00 2001 From: samuelandrew <108894698+samuelandrew@users.noreply.github.com> Date: Fri, 3 Feb 2023 09:55:44 -0800 Subject: [PATCH] Line comments: change 'inside' to 'after' For line comments, it makes more sense to talk about text written 'after' the slashes rather than 'between' the slashes --- src/hello/comment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/comment.md b/src/hello/comment.md index 5027f0a222..4ea6dcd44f 100644 --- a/src/hello/comment.md +++ b/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!");