diff options
author | 2023-10-09 20:48:07 +0200 | |
---|---|---|
committer | 2023-10-09 11:48:07 -0700 | |
commit | 8d4b296bd2f22b7ff81308210524ce0c644c5593 (patch) | |
tree | 7977a9680621da8f69c776e0aade874e646c915c | |
parent | a9e1792607fea89944526ed5478a3a82db2932eb (diff) | |
download | bun-8d4b296bd2f22b7ff81308210524ce0c644c5593.tar.gz bun-8d4b296bd2f22b7ff81308210524ce0c644c5593.tar.zst bun-8d4b296bd2f22b7ff81308210524ce0c644c5593.zip |
docs: fixing a couple typos (#6331)
-rw-r--r-- | docs/cli/bun-install.md | 2 | ||||
-rw-r--r-- | docs/dev/css.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/cli/bun-install.md b/docs/cli/bun-install.md index 3efe2da7f..0cbc21e1d 100644 --- a/docs/cli/bun-install.md +++ b/docs/cli/bun-install.md @@ -21,7 +21,7 @@ Configuring with `bunfig.toml` is optional. Bun tries to be zero configuration i # Scope name The value can be a URL string or an object "@mybigcompany" = { token = "123456", url = "https://registry.mybigcompany.com" } -# URL is optional and fallsback to the default registry +# URL is optional and falls back to the default registry # The "@" in the scope is optional mybigcompany2 = { token = "123456" } diff --git a/docs/dev/css.md b/docs/dev/css.md index a74f5d1ea..53ebc6c06 100644 --- a/docs/dev/css.md +++ b/docs/dev/css.md @@ -49,7 +49,7 @@ This is useful for preventing flash of unstyled content. ## With `bun bun` -Bun bundles `.css` files imported via `@import` into a single file. It doesn’t autoprefix or minify CSS today. Multiple `.css` files imported in one JavaScript file will _not_ be bundled into one file. You’ll have to import those from a `.css` file. +Bun bundles `.css` files imported via `@import` into a single file. It doesn’t auto-prefix or minify CSS today. Multiple `.css` files imported in one JavaScript file will _not_ be bundled into one file. You’ll have to import those from a `.css` file. This input: |