From d8fdf0fa24f97d788951ee4a1675632e55306e92 Mon Sep 17 00:00:00 2001 From: A1lo Date: Mon, 6 Jan 2025 02:06:00 +0800 Subject: [PATCH] fix typo: remove the extra parenthesis (#37500) --- files/en-us/glossary/iife/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/glossary/iife/index.md b/files/en-us/glossary/iife/index.md index bfbdc1f8d726e9b..990fb2eeaa78b9c 100644 --- a/files/en-us/glossary/iife/index.md +++ b/files/en-us/glossary/iife/index.md @@ -34,7 +34,7 @@ IIFEs are a common pattern used to execute arbitrarily many statements in their Use cases of IIFEs include: -- Avoiding polluting the global namespace by creating a new {{glossary("scope")}}). +- Avoiding polluting the global namespace by creating a new {{glossary("scope")}}. - Creating a new async context to use {{jsxref("Operators/await", "await")}} in a non-async context. - Computing values with complex logic, such as using multiple statements as a single expression.