From cc52842b877d059ff6f10cf434e21c4a19e2c07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hrvoje=20=C5=A0imi=C4=87?= Date: Sat, 30 Sep 2017 13:14:06 +0200 Subject: [PATCH] fix typo in guide --- process/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/guide.md b/process/guide.md index aa996c743d..554c145c5b 100644 --- a/process/guide.md +++ b/process/guide.md @@ -351,7 +351,7 @@ expression support. subclass type. For example, if your language is object oriented, then you can define a top level MalType (in `types.qx`) that all your mal data types inherit from. The MalList type (which also - inherits from MalType) will contains a list/array of other MalTypes. + inherits from MalType) will contain a list/array of other MalTypes. If your language is dynamically typed then you can likely just return a plain list/array of other mal types.