diff --git a/docs/cli/install.md b/docs/cli/install.md index 811c9ec95c..695c975f9c 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 b592237761..92a414c5ff 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 ```