From 71bab0d7579b8b4cb1c15306fa21e689ff8dae05 Mon Sep 17 00:00:00 2001 From: Maxim Uvarov Date: Sun, 5 Jan 2025 23:21:15 -0300 Subject: [PATCH] fix typo in configuration.md `($nu.data-dir)/vendor/autoloads` It seems like the `s` at the end is a typo. --- book/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/configuration.md b/book/configuration.md index 8e2330ae25..e764c87b1d 100644 --- a/book/configuration.md +++ b/book/configuration.md @@ -384,7 +384,7 @@ The variables that affect Nushell file locations are: - `$env.XDG_DATA_HOME`: If this environment variable is set, Nushell sets the `$nu.data-dir` constant to this value. The `data-dir` is used in several startup tasks: - `($nu.data-dir)/nushell/completions` is added to the `$env.NU_LIB_DIRS` search path. - - `($nu.data-dir)/vendor/autoloads` is added as the last path in `nu.vendor-autoload-dirs`. This means that files in this directory will be read last during startup (and thus override any definitions made in earlier files). + - `($nu.data-dir)/vendor/autoload` is added as the last path in `nu.vendor-autoload-dirs`. This means that files in this directory will be read last during startup (and thus override any definitions made in earlier files). Note that the directory represented by `$nu.data-dir`, nor any of its subdirectories, are created by default. Creation and use of these directories is up to the user.