From d7db9974b534221a466ef4e03428172f844ef045 Mon Sep 17 00:00:00 2001 From: Liam Dyer Date: Wed, 9 Oct 2024 14:15:35 -0400 Subject: [PATCH] docs: fix config location for failing prebuilt binaries download --- lua/blink/cmp/fuzzy/download.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/blink/cmp/fuzzy/download.lua b/lua/blink/cmp/fuzzy/download.lua index 1da511d7..d310a70e 100644 --- a/lua/blink/cmp/fuzzy/download.lua +++ b/lua/blink/cmp/fuzzy/download.lua @@ -31,8 +31,8 @@ function download.ensure_downloaded(callback) -- not built locally, not a git tag, error if not downloaded and not target_version then return cb( - "Can't download from github due to not being on a git tag and no native_download.version set, but found no built version of the library. " - .. 'Either run `cargo build --release` via your package manager, switch to a git tag, or set `native_download.version` in config. ' + "Can't download from github due to not being on a git tag and no fuzzy.prebuiltBinaries.forceVersion set, but found no built version of the library. " + .. 'Either run `cargo build --release` via your package manager, switch to a git tag, or set `fuzzy.prebuiltBinaries.forceVersion` in config. ' .. 'See the README for more info.' ) end