diff options
author | 2023-08-17 22:13:16 +0300 | |
---|---|---|
committer | 2023-08-17 12:13:16 -0700 | |
commit | b1356718ad61e025e5b81714d16503286a4d7e1a (patch) | |
tree | d9475bf83470b327e493420ae1a3091acb0d5792 | |
parent | b9b50e39d6d9da3603237d7c7efb8601f6862965 (diff) | |
download | bun-b1356718ad61e025e5b81714d16503286a4d7e1a.tar.gz bun-b1356718ad61e025e5b81714d16503286a4d7e1a.tar.zst bun-b1356718ad61e025e5b81714d16503286a4d7e1a.zip |
correct guide's bunfig example option (#4192)
-rw-r--r-- | docs/guides/install/yarnlock.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/install/yarnlock.md b/docs/guides/install/yarnlock.md index 898df634d..a9e8c8521 100644 --- a/docs/guides/install/yarnlock.md +++ b/docs/guides/install/yarnlock.md @@ -17,7 +17,7 @@ $ bun install --yarn To set this as the default behavior, add the following to your `bunfig.toml` file. ```toml#bunfig.toml -[install] +[install.lockfile] print = "yarn" ``` |