Skip to content

Commit 27d96f1

Browse files
authored
remove semicolon as it is continuous code and giving error with semicolon
1 parent ef2989c commit 27d96f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1780,7 +1780,7 @@
17801780
});
17811781

17821782
promise
1783-
.then((value) => console.log(value)); // Logs after 5 seconds: "I'm a Promise!"
1783+
.then((value) => console.log(value)) // Logs after 5 seconds: "I'm a Promise!"
17841784
.catch((error) => console.error(error)) // Handles any rejection
17851785
.finally(() => console.log("Done")); // Runs regardless of success or failure
17861786
```

0 commit comments

Comments
 (0)