aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Reed Jones <reedjones@reedjones.com> 2022-12-03 07:35:50 -0800
committerGravatar GitHub <noreply@github.com> 2022-12-03 07:35:50 -0800
commit00f428b62722b28b31ae6cd118aa68d88b331fe6 (patch)
treed3d31b678f5f72c4ff55ee3810d2d716e2018253
parentd28a4dbb006cd3f795362d01b2b7c1fb51c17f50 (diff)
downloadbun-00f428b62722b28b31ae6cd118aa68d88b331fe6.tar.gz
bun-00f428b62722b28b31ae6cd118aa68d88b331fe6.tar.zst
bun-00f428b62722b28b31ae6cd118aa68d88b331fe6.zip
typo in readme (#1576)
Succesfully => Successfully
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2b344ab00..806003635 100644
--- a/README.md
+++ b/README.md
@@ -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");
});
```