From 33961fad4e9aea589a18f68780f503baf5d9f5d0 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 31 Jan 2026 10:35:56 +0100 Subject: [PATCH] README: Fix typo in `app.js` snippet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7333e44..d0a17bb 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ addressing a single deprecation at a time, and prevents backsliding // use: // import './deprecation-workflow.js'; if (macroCondition(isDevelopingApp())) { - importSync('./deprecation-workflow.js'), + importSync('./deprecation-workflow.js'); } ```