From 27d96f109385f7e8d8ab66d835e58ade14a89037 Mon Sep 17 00:00:00 2001 From: Vinit Gundeti <47896506+vinitgundeti@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:31:54 +0530 Subject: [PATCH] remove semicolon as it is continuous code and giving error with semicolon --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 763c8940..47a12368 100644 --- a/README.md +++ b/README.md @@ -1780,7 +1780,7 @@ }); promise - .then((value) => console.log(value)); // Logs after 5 seconds: "I'm a Promise!" + .then((value) => console.log(value)) // Logs after 5 seconds: "I'm a Promise!" .catch((error) => console.error(error)) // Handles any rejection .finally(() => console.log("Done")); // Runs regardless of success or failure ```