From 4dee1ec0bec6a6e100bd7b324e8fc2e9191a865d Mon Sep 17 00:00:00 2001 From: "Mr.doob" Date: Sun, 8 Mar 2020 23:33:39 -0700 Subject: [PATCH] js: Fixed program comment (#1391) --- Userland/js.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/js.cpp b/Userland/js.cpp index 8e5249009af..2787ddedd4b 100644 --- a/Userland/js.cpp +++ b/Userland/js.cpp @@ -33,7 +33,7 @@ int main() { - // function foo() { return 1 + 2; } + // function foo() { return (1 + 2) + 3; } // foo(); auto program = make();