diff options
author | 2023-02-25 13:25:16 -0500 | |
---|---|---|
committer | 2023-02-25 12:25:16 -0600 | |
commit | d4dfb79b72a8e1c376b3a375c3db91c7495da3cf (patch) | |
tree | 3eae78a68dd725503b48526ee6fae47096c547ca | |
parent | 45f435345399db2f72c47c14d7e0e96ab1f782d0 (diff) | |
download | bun-d4dfb79b72a8e1c376b3a375c3db91c7495da3cf.tar.gz bun-d4dfb79b72a8e1c376b3a375c3db91c7495da3cf.tar.zst bun-d4dfb79b72a8e1c376b3a375c3db91c7495da3cf.zip |
Fix broken link in developing.md (#2188)
* Fix broken link in developing.md
* Update developing.md
-rw-r--r-- | docs/project/developing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/project/developing.md b/docs/project/developing.md index db4eb3eb5..49c763680 100644 --- a/docs/project/developing.md +++ b/docs/project/developing.md @@ -102,10 +102,10 @@ $ export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@15)/include" **⚠️ Warning** — You must use the same version of Zig used by Bun in [oven-sh/zig](https://github.com/oven-sh/zig). Installing with `brew` or via Zig's download page will not work! {% /callout %} -Use [`zigup`](<[zigup](https://github.com/marler8997/zigup)>) to install the version of Zig (`ZIG_VERSION`) specified in the official [`Dockerfile`](https://github.com/oven-sh/bun/blob/main/Dockerfile). For example: +Use [`zigup`](https://github.com/marler8997/zigup) to install the version of Zig (`ZIG_VERSION`) specified in the official [`Dockerfile`](https://github.com/oven-sh/bun/blob/main/Dockerfile). For example: ```bash -$ zigup 0.11.0-dev.1393+38eebf3c4 +$ zigup 0.11.0-dev.1783+436e99d13 ``` ### Building |