diff options
Diffstat (limited to 'docs/runtime/index.md')
-rw-r--r-- | docs/runtime/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime/index.md b/docs/runtime/index.md index 04f0e7ffd..4c557cab4 100644 --- a/docs/runtime/index.md +++ b/docs/runtime/index.md @@ -2,7 +2,7 @@ Bun is a new JavaScript & TypeScript runtime designed to be a faster, leaner, an ## Speed -Bun is designed to start fast and run fast. It's transpiler and runtime are written in Zig, a modern, high-performance language. On Linux, this translates into startup times [4x faster](https://twitter.com/jarredsumner/status/1499225725492076544) than Node.js. +Bun is designed to start fast and run fast. Its transpiler and runtime are written in Zig, a modern, high-performance language. On Linux, this translates into startup times [4x faster](https://twitter.com/jarredsumner/status/1499225725492076544) than Node.js. {% image src="/images/bun-run-speed.jpeg" caption="Bun vs Node.js vs Deno running Hello World" /%} @@ -27,7 +27,7 @@ Some aspects of Bun's runtime behavior are affected by the contents of your `tsc <!-- -every file before execution. It's transpiler can directly run TypeScript and JSX `{.js|.jsx|.ts|.tsx}` files directly. During execution, Bun internally transpiles all files (including `.js` files) to vanilla JavaScript with it's fast native transpiler. --> +every file before execution. Its transpiler can directly run TypeScript and JSX `{.js|.jsx|.ts|.tsx}` files directly. During execution, Bun internally transpiles all files (including `.js` files) to vanilla JavaScript with its fast native transpiler. --> <!-- A loader determines how to map imports & file extensions to transforms and output. --> |