From 84f06116bac1c72c61263cc6dce2b34690b23da3 Mon Sep 17 00:00:00 2001 From: Jonatan Date: Tue, 26 May 2015 15:05:02 +0200 Subject: [PATCH] Fix typo in makeHoldingGoal --- Interpreter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interpreter.ts b/Interpreter.ts index 74a13b8e..a73bea22 100644 --- a/Interpreter.ts +++ b/Interpreter.ts @@ -271,7 +271,7 @@ module Interpreter { candList.candidates.forEach((c) => { goals.push(makeGoal("holding", [c])); }); - return {lis:goals, isAnd:false}; + return {list:goals, isAnd:false}; } }