diff options
author | 2022-12-03 07:35:50 -0800 | |
---|---|---|
committer | 2022-12-03 07:35:50 -0800 | |
commit | 00f428b62722b28b31ae6cd118aa68d88b331fe6 (patch) | |
tree | d3d31b678f5f72c4ff55ee3810d2d716e2018253 | |
parent | d28a4dbb006cd3f795362d01b2b7c1fb51c17f50 (diff) | |
download | bun-00f428b62722b28b31ae6cd118aa68d88b331fe6.tar.gz bun-00f428b62722b28b31ae6cd118aa68d88b331fe6.tar.zst bun-00f428b62722b28b31ae6cd118aa68d88b331fe6.zip |
typo in readme (#1576)
Succesfully => Successfully
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2797,9 +2797,9 @@ test("peek", () => { // - returns the error // - does not mark the promise as handled const rejected = Promise.reject( - new Error("Succesfully tested promise rejection"), + new Error("Successfully tested promise rejection"), ); - expect(peek(rejected).message).toBe("Succesfully tested promise rejection"); + expect(peek(rejected).message).toBe("Successfully tested promise rejection"); }); ``` |