From 74697446c2c2bc9aec7e7e573d78380ac98628cd Mon Sep 17 00:00:00 2001 From: doyousketch2 Date: Sun, 22 Jun 2014 06:05:49 -0400 Subject: [PATCH] Update ListPrims.as Nothing major, just fixed a typo. --- src/primitives/ListPrims.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primitives/ListPrims.as b/src/primitives/ListPrims.as index f2acf0a..b2c5eda 100644 --- a/src/primitives/ListPrims.as +++ b/src/primitives/ListPrims.as @@ -153,7 +153,7 @@ public class ListPrims { var item:* = interp.arg(b, 1); if (list.contents.indexOf(item) >= 0) return true; for each (var el:* in list.contents) { - // use Scratch comparision operator (Scratch considers the string '123' equal to the number 123) + // use Scratch comparison operator (Scratch considers the string '123' equal to the number 123) if (Primitives.compare(el, item) == 0) return true; } return false;