From 62f530d5acc5e775c7d02fa416456030da0e88dc Mon Sep 17 00:00:00 2001 From: Kentaro Okuda Date: Wed, 21 Dec 2022 19:45:02 -0500 Subject: [PATCH] typo: assigment -> assignment --- src/basic-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic-syntax.md b/src/basic-syntax.md index 3bbf8326..e10850c5 100644 --- a/src/basic-syntax.md +++ b/src/basic-syntax.md @@ -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 `==`.