colour->color, behaviour->behavior

These spellings are more common elsewhere in the codebase
This commit is contained in:
Rangi42
2023-11-27 16:02:17 -05:00
parent e1220d6fc6
commit b46aa0f55b
5 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ output="$(mktemp)"
errput="$(mktemp)"
rc=0
# Immediate expansion is the desired behaviour.
# Immediate expansion is the desired behavior.
# shellcheck disable=SC2064
trap "rm -f ${o@Q} ${gb@Q} ${input@Q} ${output@Q} ${errput@Q}" EXIT

View File

@@ -8,7 +8,7 @@ rc=0
cp ../../{rgbfix,contrib/gbdiff.bash} "$tmpdir"
cd "$tmpdir" || exit
# Immediate expansion is the desired behaviour.
# Immediate expansion is the desired behavior.
# shellcheck disable=SC2064
trap "cd; rm -rf ${tmpdir@Q}" EXIT

View File

@@ -9,7 +9,7 @@ gbtemp2="$(mktemp)"
outtemp="$(mktemp)"
rc=0
# Immediate expansion is the desired behaviour.
# Immediate expansion is the desired behavior.
# shellcheck disable=SC2064
trap "rm -f ${otemp@Q} ${gbtemp@Q} ${gbtemp2@Q} ${outtemp@Q}" EXIT