aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-27 00:01:15 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-27 00:01:15 +1300
commitb7ce245e859b946deee740bc617f2b997a52e9dd (patch)
treedb832ca74e9973279a80733825d8fd36ddb8edab /bash
parentBreak up some long lines (diff)
downloaddotfiles-b7ce245e859b946deee740bc617f2b997a52e9dd.tar.gz
dotfiles-b7ce245e859b946deee740bc617f2b997a52e9dd.zip
Two-space sentences in shell comments
Diffstat (limited to 'bash')
-rw-r--r--bash/bash_completion.d/_text_filenames.bash2
-rw-r--r--bash/bash_completion.d/make.bash2
-rw-r--r--bash/bashrc.d/keep.bash2
3 files changed, 3 insertions, 3 deletions
diff --git a/bash/bash_completion.d/_text_filenames.bash b/bash/bash_completion.d/_text_filenames.bash
index b6e035ad..0f7f6dd8 100644
--- a/bash/bash_completion.d/_text_filenames.bash
+++ b/bash/bash_completion.d/_text_filenames.bash
@@ -3,7 +3,7 @@
#
# I've seen some very clever people figure out ways to actually read the files
# or run something like file(1) over them to make an educated guess as to
-# whether they're binary or not, but I don't really want to go that far. It's
+# whether they're binary or not, but I don't really want to go that far. It's
# not supposed to be perfect, just a bit more likely to complete singly with
# the thing I want, and I want it to stay fast.
#
diff --git a/bash/bash_completion.d/make.bash b/bash/bash_completion.d/make.bash
index b3148ff1..e39cc53e 100644
--- a/bash/bash_completion.d/make.bash
+++ b/bash/bash_completion.d/make.bash
@@ -7,7 +7,7 @@ fi
_make() {
# Find a legible Makefile according to the POSIX spec (look for "makefile"
- # first, then "Makefile"). You may want to add "GNU-makefile" after this.
+ # first, then "Makefile"). You may want to add "GNU-makefile" after this.
local mf
for mf in makefile Makefile '' ; do
! [[ -e $mf ]] || break
diff --git a/bash/bashrc.d/keep.bash b/bash/bashrc.d/keep.bash
index 191dac4b..6796aae7 100644
--- a/bash/bashrc.d/keep.bash
+++ b/bash/bashrc.d/keep.bash
@@ -2,7 +2,7 @@
# keep -- Main function for bashkeep; provided with a list of NAMEs, whether
# shell functions or variables, writes the current definition of each NAME to a
# directory $BASHKEEP (defaults to ~/.bashkeep.d) with a .bash suffix, each of
-# which is reloaded each time this file is called. This allows you to quickly
+# which is reloaded each time this file is called. This allows you to quickly
# arrange to keep that useful shell function or variable you made inline on
# subsequent logins.
#