diff options
author | 2023-09-12 21:50:05 -0400 | |
---|---|---|
committer | 2023-09-12 18:50:05 -0700 | |
commit | 263382103f47ce6f7063ad07d34664718b4c1ea7 (patch) | |
tree | 20b7954f6f99de6e6472bd1e4a05df72e9e88ae7 /docs/bundler/intro.md | |
parent | 8777c3f72c8aa0dfef73a52c66887c0faaf41401 (diff) | |
download | bun-263382103f47ce6f7063ad07d34664718b4c1ea7.tar.gz bun-263382103f47ce6f7063ad07d34664718b4c1ea7.tar.zst bun-263382103f47ce6f7063ad07d34664718b4c1ea7.zip |
docs: fix typos (#5151)
Diffstat (limited to '')
-rw-r--r-- | docs/bundler/intro.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bundler/intro.md b/docs/bundler/intro.md index 5056c26a9..8927053d5 100644 --- a/docs/bundler/intro.md +++ b/docs/bundler/intro.md @@ -40,7 +40,7 @@ When a user visits this website, the files are loaded in the following order: This approach works, it requires three round-trip HTTP requests before the browser is ready to render the page. On slow internet connections, this may add up to a non-trivial delay. -This example is extremely simplistic. A modern app may be loading dozens of modules from `node_modules`, each consisting of hundrends of files. Loading each of these files with a separate HTTP request becomes untenable very quickly. While most of these requests will be running in parallel, the number of round-trip requests can still be very high; plus, there are limits on how many simultaneous requests a browser can make. +This example is extremely simplistic. A modern app may be loading dozens of modules from `node_modules`, each consisting of hundred of files. Loading each of these files with a separate HTTP request becomes untenable very quickly. While most of these requests will be running in parallel, the number of round-trip requests can still be very high; plus, there are limits on how many simultaneous requests a browser can make. {% callout %} Some recent advances like modulepreload and HTTP/3 are intended to solve some of these problems, but at the moment bundling is still the most performant approach. |