From b4b8276a4740a69c526a1193604177abcaf2c8df Mon Sep 17 00:00:00 2001 From: Aleksandar15 Date: Sun, 15 Dec 2024 02:19:31 +0100 Subject: [PATCH] Fixed a typo that causes reference error --- files/en-us/glossary/function/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/function/index.md b/files/en-us/glossary/function/index.md index 42b0db4f84b1654..47759a56beb1a8b 100644 --- a/files/en-us/glossary/function/index.md +++ b/files/en-us/glossary/function/index.md @@ -65,7 +65,7 @@ function loop(x) { // Arrow function const loop2 = (x) => { if (x >= 10) return; - loop(x + 1); + loop2(x + 1); }; ```