aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime
diff options
context:
space:
mode:
authorGravatar Matthew Yu <56417255+matthewyu01@users.noreply.github.com> 2023-09-11 08:50:39 -0700
committerGravatar GitHub <noreply@github.com> 2023-09-11 08:50:39 -0700
commit9d6a8ee79df73c4b2160a53d58d8789fff130e95 (patch)
tree7c14a2f03ffb22819a64ee041cc0855ac3d8a7c3 /docs/runtime
parentb55b511f685d0520ba2110b1182980ac80a7b3b7 (diff)
downloadbun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.tar.gz
bun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.tar.zst
bun-9d6a8ee79df73c4b2160a53d58d8789fff130e95.zip
Fix punctuation (#4870)
Diffstat (limited to 'docs/runtime')
-rw-r--r--docs/runtime/index.md4
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 &amp; file extensions to transforms and output. -->