summaryrefslogtreecommitdiff
path: root/data/shell-completions/bash
diff options
context:
space:
mode:
authorspaette <spaette@users.noreply.github.com>2024-09-11 13:05:04 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-09-11 15:51:04 -0700
commit4179996fefd272cc0c893b88ad17c010fa037768 (patch)
treea5f7f8ff03bb5b6d39556331d4c2e163f7718c14 /data/shell-completions/bash
parent3aedec5b34c586b9c3a16be17d2fda353bf5fff1 (diff)
downloadmeson-4179996fefd272cc0c893b88ad17c010fa037768.tar.gz
Fix typos
Diffstat (limited to 'data/shell-completions/bash')
-rw-r--r--data/shell-completions/bash/meson2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/shell-completions/bash/meson b/data/shell-completions/bash/meson
index 88dc15ec3..0814342db 100644
--- a/data/shell-completions/bash/meson
+++ b/data/shell-completions/bash/meson
@@ -30,7 +30,7 @@ _subprojects() {
local COMPREPLY=()
_filedir
# _filedir for whatever reason can't reason about symlinks, so -d will them.
- # Filter out wrap files with this expresion.
+ # Filter out wrap files with this expression.
IFS=$'\n' echo "${COMPREPLY[*]}" | grep -vE '\.wrap$' | xargs
popd &>/dev/null
}