aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar 0xflotus <0xflotus@gmail.com> 2023-07-29 12:58:45 +0200
committerGravatar GitHub <noreply@github.com> 2023-07-29 03:58:45 -0700
commitdccf82b1c682a84c42540ba9e00e5e9296cc7e5f (patch)
tree18778b43288415fb057049992c7d2d914bbc31ee
parent5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8 (diff)
downloadbun-dccf82b1c682a84c42540ba9e00e5e9296cc7e5f.tar.gz
bun-dccf82b1c682a84c42540ba9e00e5e9296cc7e5f.tar.zst
bun-dccf82b1c682a84c42540ba9e00e5e9296cc7e5f.zip
docs: fixed small errors (#3879)
* Update cache.md * Update index.md * Update macros.md * Update writing.md
Diffstat (limited to '')
-rw-r--r--docs/bundler/index.md2
-rw-r--r--docs/bundler/macros.md2
-rw-r--r--docs/install/cache.md2
-rw-r--r--docs/test/writing.md2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/bundler/index.md b/docs/bundler/index.md
index da1c3ecae..bfbed2077 100644
--- a/docs/bundler/index.md
+++ b/docs/bundler/index.md
@@ -482,7 +482,7 @@ n/a
{% /codetabs %}
-Bun implements a univeral plugin system for both Bun's runtime and bundler. Refer to the [plugin documentation](/docs/bundler/plugins) for complete documentation.
+Bun implements a universal plugin system for both Bun's runtime and bundler. Refer to the [plugin documentation](/docs/bundler/plugins) for complete documentation.
<!-- ### `manifest`
diff --git a/docs/bundler/macros.md b/docs/bundler/macros.md
index 729f8350b..ecba16c0d 100644
--- a/docs/bundler/macros.md
+++ b/docs/bundler/macros.md
@@ -33,7 +33,7 @@ As you can see, the source code of the `random` function occurs nowhere in the b
## When to use macros
-If you have several build scripts for small things where you would otherwise have a one-off build script, bundle-time code execution can be easier to maintain. It lives with the rest of your code, it runs with the rest of the build, it is automatically paralellized, and if it fails, the build fails too.
+If you have several build scripts for small things where you would otherwise have a one-off build script, bundle-time code execution can be easier to maintain. It lives with the rest of your code, it runs with the rest of the build, it is automatically parallelized, and if it fails, the build fails too.
If you find yourself running a lot of code at bundle-time though, consider running a server instead.
diff --git a/docs/install/cache.md b/docs/install/cache.md
index 6bd13d04a..bb22e545d 100644
--- a/docs/install/cache.md
+++ b/docs/install/cache.md
@@ -19,7 +19,7 @@ disableManifest = false
## Minimizing re-downloads
-Bun strives to avoid re-downloading packages mutiple times. When installing a package, if the cache already contains a version in the range specified by `package.json`, Bun will use the cached package instead of downloading it again.
+Bun strives to avoid re-downloading packages multiple times. When installing a package, if the cache already contains a version in the range specified by `package.json`, Bun will use the cached package instead of downloading it again.
{% details summary="Installation details" %}
If the semver version has pre-release suffix (`1.0.0-beta.0`) or a build suffix (`1.0.0+20220101`), it is replaced with a hash of that value instead, to reduce the chances of errors associated with long file paths.
diff --git a/docs/test/writing.md b/docs/test/writing.md
index e5e3fe1b0..a99af8b90 100644
--- a/docs/test/writing.md
+++ b/docs/test/writing.md
@@ -101,7 +101,7 @@ test.todo("fix this", () => {
});
```
-To exlusively run tests marked as _todo_, use `bun test --todo`.
+To exclusively run tests marked as _todo_, use `bun test --todo`.
```sh
$ bun test --todo
s='logmsg'> * fix: get correct url * chore: changeset * fix: respect runtime env 2024-02-26fix(toolbar): Make it so every built-in app can be closed by outside clicks ↵Gravatar Erika 8-51/+63 (#10220) * fix(toolbar): Make it so every built-in app can be closed by outside clicks * chore: changeset * test: add tests * test: fix test * ci: don't run bundle-size on dev-toolba 2024-02-26Fix an issue where Vercel adapter may create functions for prerendered ↵Gravatar Ming-jun Lu 4-2/+26 routes (#10231) * fix: fix an issue where Vercel adapter may create functions for prerendered routes * test: update test cases in `split.test.js` * chore: add changeset * refactor: apply suggested changes from code review * Apply suggestions from code review --------- Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com> 2024-02-26[ci] formatGravatar Matthew Phillips 1-1/+1 2024-02-26Fix hydration scripts missing from dynamic slot usage (#10219)Gravatar Matthew Phillips 6-1/+69 2024-02-26[ci] formatGravatar Matthew Phillips 1-5/+5 2024-02-26Prevent errors in rendering from crashing server (#10221)Gravatar Matthew Phillips 7-14/+78 * Prevent errors in rendering from crashing server * Add changeset * Make the reject an error * Simplify * Update .changeset/breezy-pears-admire.md Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev> --------- Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev> 2024-02-26fix: svelte 5 mount/hydrate api change. (#10224)Gravatar 前端子鱼 3-5/+12 2024-02-24[ci] formatGravatar Arsh 1-9/+30 2024-02-24prevent warning: `Astro.request.headers` is not available in "static" output ↵Gravatar Arsh 2-27/+30 mode (#10196) 2024-02-23Improved error logging from config (#10207)Gravatar Ben Holmes 4-36/+67 * fix: better error messaging on seed() * chore: collection -> table for errors * chore: changeset 2024-02-23[ci] formatGravatar Arsh 3-3/+3 2024-02-23fix(dev): remove params for prerendered pages (#10199)Gravatar Arsh 9-13/+78 * fix(dev): remove params for prerendered pages * add test * add changset * deduplicate param removal * format * adjust tests 2024-02-23[ci] release (#10213)astro@4.4.4@astrojs/vercel@7.3.3@astrojs/node@8.2.1@astrojs/db@0.4.0Gravatar Houston (Bot) 41-177/+95 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2024-02-23Fixes edge middleware calling nested routes (#10215)Gravatar Matthew Phillips 2-1/+6 2024-02-23Adds an error message for non-string transition:name values (#10205)Gravatar Martin Trapp 2-0/+8 2024-02-23[ci] formatGravatar Furkan Erdem 1-1/+1 2024-02-23Fix(node): Custom headers are not present in responses from standalone Node ↵Gravatar Furkan Erdem 8-0/+163 server in preview mode (#10208) * fix(node): add user specified headers to preview server responses * docs: clarify comment * style: new line * test: remove test * chore: add changeset