aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Keyhan Vakil <kvakil@github.kvakil.me> 2023-06-11 09:26:46 -0700
committerGravatar GitHub <noreply@github.com> 2023-06-11 09:26:46 -0700
commit50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029 (patch)
tree376ade74ca489998fb66b47d32ba176f44ec9ad6
parent9a8d9b5e91078feada22563bb79a77a4a316f1e5 (diff)
downloadbun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.tar.gz
bun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.tar.zst
bun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.zip
doc: minor fixes (#3278)
* `bun link` only modifies `package.json` when `--save` is passed. * clang-15 is a separate package from llvm-15.
-rw-r--r--docs/cli/install.md2
-rw-r--r--docs/project/development.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/cli/install.md b/docs/cli/install.md
index 811c9ec95..695c975f9 100644
--- a/docs/cli/install.md
+++ b/docs/cli/install.md
@@ -185,7 +185,7 @@ $ cd /path/to/my-app
$ bun link cool-pkg
```
-This will add `cool-pkg` to the `dependencies` field of your app's package.json with a special version specifier that tells Bun to load from the registered local directory instead of installing from `npm`.
+In addition, the `--save` flag can be used to add `cool-pkg` to the `dependencies` field of your app's package.json with a special version specifier that tells Bun to load from the registered local directory instead of installing from `npm`:
```json-diff
{
diff --git a/docs/project/development.md b/docs/project/development.md
index b59223776..92a414c5f 100644
--- a/docs/project/development.md
+++ b/docs/project/development.md
@@ -42,7 +42,7 @@ $ brew install llvm@15
```bash#Ubuntu/Debian
# On Ubuntu 22.04 and newer, LLVM 15 is available in the default repositories
-$ sudo apt install llvm-15 lld-15
+$ sudo apt install llvm-15 lld-15 clang-15
# On older versions,
$ wget https://apt.llvm.org/llvm.sh -O - | sudo bash -s -- 15 all
```