From d5b510df80113edf832108f7af8ee29ddde8e2cb Mon Sep 17 00:00:00 2001 From: Saurabh Date: Tue, 5 Jan 2021 01:23:28 +0530 Subject: [PATCH] doc: correct grammar (#7801) --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index b9f5b81fe5..886b76b806 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -897,7 +897,7 @@ It works like this: ```v oksyntax mut x := MySumType(MyStruct{123}) if mut x is MyStruct { - // x is casted to MyStruct even it's mutable + // x is casted to MyStruct even if it's mutable // without the mut keyword that wouldn't work println(x) }