diff options
-rw-r--r-- | docs/cli/install.md | 2 | ||||
-rw-r--r-- | docs/project/development.md | 2 |
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 ``` |