aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar B. Burt <beeburrt@outlook.com> 2023-04-27 04:00:35 -0700
committerGravatar GitHub <noreply@github.com> 2023-04-27 04:00:35 -0700
commit5a8a418ef4aace992139157de9391d7e069d499d (patch)
tree35d82fb7f07f3708f8767bb44af71f1f9a783838
parentdf59fe28431837b28e11ee3031667b595f14403e (diff)
downloadbun-5a8a418ef4aace992139157de9391d7e069d499d.tar.gz
bun-5a8a418ef4aace992139157de9391d7e069d499d.tar.zst
bun-5a8a418ef4aace992139157de9391d7e069d499d.zip
Remove extra word in docs/index.md (#2758)
Diffstat (limited to '')
-rw-r--r--docs/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.md b/docs/index.md
index 6fb692fb9..b0bff82f1 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -38,7 +38,7 @@ JavaScript (or, more formally, ECMAScript) is just a _specification_ for a progr
### Browsers
-But most JavaScript programs don't run in a vacuum. They need a way to access to the outside world to perform useful tasks. This is where _runtimes_ come in. They implement additional APIs that are then made available to the JavaScript programs they execute. Notably, browsers ship with JavaScript runtimes that implement a set of Web-specific APIs that are exposed via the global `window` object. Any JavaScript code executed by the browser can use these APIs to implement interactive or dynamic behavior in the context of the current webpage.
+But most JavaScript programs don't run in a vacuum. They need a way to access the outside world to perform useful tasks. This is where _runtimes_ come in. They implement additional APIs that are then made available to the JavaScript programs they execute. Notably, browsers ship with JavaScript runtimes that implement a set of Web-specific APIs that are exposed via the global `window` object. Any JavaScript code executed by the browser can use these APIs to implement interactive or dynamic behavior in the context of the current webpage.
<!-- JavaScript runtime that exposes JavaScript engines are designed to run "vanilla" JavaScript programs, but it's often JavaScript _runtimes_ use an engine internally to execute the code and implement additional APIs that are then made available to executed programs.
JavaScript was [initially designed](https://en.wikipedia.org/wiki/JavaScript) as a language to run in web browsers to implement interactivity and dynamic behavior in web pages. Browsers are the first JavaScript runtimes. JavaScript programs that are executed in browsers have access to a set of Web-specific global APIs on the `window` object. -->