From 5c656899e5e284cc65856192cb638d08d1499e7a Mon Sep 17 00:00:00 2001 From: Yahyaa Masood Date: Mon, 7 Sep 2020 04:50:12 -0700 Subject: [PATCH] doc: add a missing period (#6199) --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 93ad863cd5..1abbfc81b9 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -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