summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2018-11-04 13:44:08 +0100
committerGitHub <noreply@github.com>2018-11-04 13:44:08 +0100
commit2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9 (patch)
tree27ff651e69265992e54a301592f6c7c564e77e0d /nixos
parentc891dac82ff39fc086a35201e8741813d222f601 (diff)
parentc4f6745e72ec2db0430c2a91dde28a03700e9147 (diff)
downloadnixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar.gz
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar.bz2
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar.lz
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar.xz
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.tar.zst
nixlib-2adb521d3dc8c66b76af1efd7e778cfb7b6f8fb9.zip
Merge pull request #49746 from NixOS/fix-nixos-bash-completion-comment
nixos: programs.bash: Fix comment about completion
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/bash/bash.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index 0fbc77ea44cf..d325fff6a572 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -16,7 +16,7 @@ let
     # programmable completion. If we do, enable all modules installed in
     # the system and user profile in obsolete /etc/bash_completion.d/
     # directories. Bash loads completions in all
-    # $XDG_DATA_DIRS/share/bash-completion/completions/
+    # $XDG_DATA_DIRS/bash-completion/completions/
     # on demand, so they do not need to be sourced here.
     if shopt -q progcomp &>/dev/null; then
       . "${pkgs.bash-completion}/etc/profile.d/bash_completion.sh"