1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-03 18:15:31 +02:00

Merge pull request #20 from lonesometraveler/typo

typo: assigment -> assignment
This commit is contained in:
Martin Geisler 2022-12-22 10:03:35 +01:00 committed by GitHub
commit d80b91b3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,4 +6,4 @@ Much of the Rust syntax will be familiar to you from C or C++:
* Line comments are started with `//`, block comments are delimited by `/* ...
*/`.
* Keywords like `if` and `while` work the same.
* Variable assigment is done with `=`, comparison is done with `==`.
* Variable assignment is done with `=`, comparison is done with `==`.