Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/hello/comment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading