Grammar typo (#7)

This commit is contained in:
Ernie Hershey 2024-05-17 10:59:04 -04:00 committed by GitHub
parent fe189a64e4
commit 45c5e390c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@
// explanations. // explanations.
// There are various ways to write comments in Rust, each with its own purpose. // 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. // 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 // Exercises will include `TODO`, `todo!()` or `__` markers to draw your attention to the lines
// where you need to write code. // where you need to write code.