From c9f9be0a46a1522ebe94e0863750b506ea5df0a8 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Sat, 24 Oct 2020 08:43:07 +0200 Subject: [PATCH] README: minor formatting/wording fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67f1f82..b1dcfb0 100644 --- a/README.md +++ b/README.md @@ -182,13 +182,13 @@ in `$HOME/.cache/direnv/layouts/`: declare -A direnv_layout_dirs direnv_layout_dir() { echo "${direnv_layout_dirs[$PWD]:=$( - echo -n "$XDG_CACHE_HOME"/direnv/layouts/; + echo -n "$XDG_CACHE_HOME"/direnv/layouts/ echo -n "$PWD" | shasum | cut -d ' ' -f 1 )}" } ``` During direnv setup `direnv_layout_dir` can be called multiple times and with different values of `$PWD` -(when including other `.envrc` files). Therefore cache its results in dictionary `direnv_layout_dirs`. +(when other `.envrc` files are included). Therefore cache its results in dictionary `direnv_layout_dirs`. ## Manually re-triggering evaluation