diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-05-26 20:40:34 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-05-26 20:40:34 +1200 |
commit | 361f31b086ebe67a0d9e1733c579c6b8498b0c99 (patch) | |
tree | 86b867a76997b55c1a9fadeba95f41ff8d63fdd1 /bash | |
parent | Remove implemented idea (diff) | |
download | dotfiles-361f31b086ebe67a0d9e1733c579c6b8498b0c99.tar.gz dotfiles-361f31b086ebe67a0d9e1733c579c6b8498b0c99.zip |
Correct comment spelling error
Diffstat (limited to 'bash')
-rw-r--r-- | bash/bash_completion.d/sd.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_completion.d/sd.bash b/bash/bash_completion.d/sd.bash index aeee1615..aeb76fa0 100644 --- a/bash/bash_completion.d/sd.bash +++ b/bash/bash_completion.d/sd.bash @@ -7,7 +7,7 @@ _sd() { # Current directory can't be root directory [[ $PWD != / ]] || return 1 - # Build list of matching sibiling directories + # Build list of matching sibling directories local dirname while IFS= read -rd '' dirname ; do [[ -n $dirname ]] || continue |