From 0c9fb7e063d80358ddd7898ce7f45f3dc90aaecc Mon Sep 17 00:00:00 2001 From: Kirk Scheibelhut Date: Tue, 5 Jul 2022 11:11:06 -0700 Subject: nitpick README - modify wording of example which implies there are two blobs beings passed when only one is - styling Bun.js -> bun.js for consistency - correct 63 bits -> 53 bits --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index af0270b77..b64aaa399 100644 --- a/README.md +++ b/README.md @@ -274,7 +274,7 @@ bun.js has fast paths for common use cases that make Web APIs live up to the per `Bun.file(path)` returns a [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) that represents a lazily-loaded file. -When you pass two file blobs to `Bun.write`, Bun automatically uses a faster system call: +When you pass a file blob to `Bun.write`, Bun automatically uses a faster system call: ```js const blob = Bun.file("input.txt"); @@ -464,9 +464,9 @@ You can see [Bun's Roadmap](https://github.com/Jarred-Sumner/bun/issues/159), bu | Feature | In | | ------------------------------------------------------------------------------------- | -------------- | -| Web Streams with Fetch API | Bun.js | -| Web Streams with HTMLRewriter | Bun.js | -| WebSocket Server | Bun.js | +| Web Streams with Fetch API | bun.js | +| Web Streams with HTMLRewriter | bun.js | +| WebSocket Server | bun.js | | Package hoisting that matches npm behavior | bun install | | Source Maps (unbundled is supported) | JS Bundler | | Source Maps | CSS | @@ -2615,7 +2615,7 @@ Bun represents [pointers](