From 188be20ea3d3442a54e39dfeece93e5d455b4865 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 28 Feb 2018 23:32:20 -0500 Subject: [PATCH] One grammar correction --- recursive-desc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recursive-desc.js b/recursive-desc.js index 19a6e65..52e8db8 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -516,7 +516,7 @@ rules["eat"].push({ hasLessThan(container, "Person", 5); }, "desc": function(container, macro, verbose) { - return "You crush the " + container.contents["Car"].describe() + " with your tight throat, washing it down with " + container.contents["Person"].describe(); + return "You crush " + container.contents["Car"].describe() + " with your tight throat, washing it down with " + container.contents["Person"].describe(); } });