build: lint for typos

This commit is contained in:
Nathaniel Landau
2023-08-29 10:43:38 -04:00
parent fea8ce4e5c
commit 64c8658c8e
11 changed files with 45 additions and 17 deletions

View File

@@ -307,9 +307,9 @@ _splitString_() (
declare -a _arr=()
local _input="${1}"
local _delimeter="${2}"
local _delimiter="${2}"
IFS="${_delimeter}" read -r -a _arr <<<"${_input}"
IFS="${_delimiter}" read -r -a _arr <<<"${_input}"
printf '%s\n' "${_arr[@]}"
)