doc: add a missing period (#6199)

pull/6327/head
Yahyaa Masood 2020-09-07 04:50:12 -07:00 committed by GitHub
parent 497bf226e2
commit 5c656899e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ Try compiling the program above after removing `mut` from the first line.
### Initialization vs assignment
Note the (important) difference between `:=` and `=`
Note the (important) difference between `:=` and `=`.
`:=` is used for declaring and initializing, `=` is used for assigning.
```v