diff options
author | morganamilo <morganamilo@gmail.com> | 2019-02-02 19:01:05 +0000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-02-04 10:17:30 +1000 |
commit | 04e77591d6333002815e9276ca08c01230fcf212 (patch) | |
tree | 96143cf560ce7fd6bbaa34e793be3b2f00ae4516 /scripts | |
parent | 11bc315cdb3c2a3f227b4d05c13f615dfb453b5e (diff) | |
download | pacman-04e77591d6333002815e9276ca08c01230fcf212.tar.xz |
fix various typos
Signed-off-by: morganamilo <morganamilo@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/libmakepkg/executable/strip.sh.in | 2 | ||||
-rw-r--r-- | scripts/libmakepkg/util/pkgbuild.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/libmakepkg/executable/strip.sh.in b/scripts/libmakepkg/executable/strip.sh.in index 867dc928..ab069a45 100644 --- a/scripts/libmakepkg/executable/strip.sh.in +++ b/scripts/libmakepkg/executable/strip.sh.in @@ -1,6 +1,6 @@ #!/usr/bin/bash # -# strip.sh - Confirm presense of strip binary +# strip.sh - Confirm presence of strip binary # # Copyright (c) 2011-2018 Pacman Development Team <pacman-dev@archlinux.org> # diff --git a/scripts/libmakepkg/util/pkgbuild.sh.in b/scripts/libmakepkg/util/pkgbuild.sh.in index 298275a8..4163805d 100644 --- a/scripts/libmakepkg/util/pkgbuild.sh.in +++ b/scripts/libmakepkg/util/pkgbuild.sh.in @@ -38,7 +38,7 @@ array_build() { # it's an error to try to copy a value which doesn't exist. declare -p "$2" &>/dev/null || return 1 - # Build an array of the indicies of the source array. + # Build an array of the indices of the source array. eval "keys=(\"\${!$2[@]}\")" # Clear the destination array |