From cb1819604f9c40a23b5a4eaca117099485f1470e Mon Sep 17 00:00:00 2001 From: Micah Cox Date: Wed, 6 May 2026 18:35:26 -0400 Subject: [PATCH] Update comment.md - Fixed comments related to asterisk column The comment block describing a column of asterisks was missing the column. The comment block above it had the columns. This update removes the column from the comment block that first demonstrates "comment blocks". It adds the asterisks to the comment block below it that states the asterisk columns are just for show. --- src/hello/comment.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/hello/comment.md b/src/hello/comment.md index f32f621781..6c5e95cfb1 100644 --- a/src/hello/comment.md +++ b/src/hello/comment.md @@ -26,15 +26,15 @@ fn main() { // Try removing the slashes above and running the code again. /* - * Block comments are useful for temporarily disabling code. - * They can also be nested: /* like this */ which makes it easy - * to comment out large sections quickly. + Block comments are useful for temporarily disabling code. + They can also be nested: /* like this */ which makes it easy + to comment out large sections quickly. */ /* - Note: The asterisk column on the left is just for style - - it's not required by the language. - */ + * Note: The asterisk column on the left is just for style - + * it's not required by the language. + */ // Block comments make it easy to toggle code on/off by adding // or removing just one slash: