From 5a6e5c02b504f79660571b3d3b09a1485228602d Mon Sep 17 00:00:00 2001 From: "ajeffrey@roblox.com" Date: Thu, 10 Feb 2022 12:03:37 -0600 Subject: [PATCH] Fix smoke test --- prototyping/Examples/SmokeTest.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototyping/Examples/SmokeTest.lua b/prototyping/Examples/SmokeTest.lua index 5ea8e592..e1e37e32 100644 --- a/prototyping/Examples/SmokeTest.lua +++ b/prototyping/Examples/SmokeTest.lua @@ -8,6 +8,6 @@ local function comp(f) end end end -local id2 = comp (id)(id) +local id2 = comp(id)(id) local nil2 = id2(nil) -return nil2(nil2) \ No newline at end of file +return id2(nil2)