From 7f0334d07bdbf7a2dec983f3f97ec46ed2b94868 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 10 Aug 2018 13:11:55 +0000 Subject: [PATCH] Fix typo in comment --- scope | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scope b/scope index 49aa7d3fc..5611e1f5d 100755 --- a/scope +++ b/scope @@ -245,7 +245,7 @@ case "$COMMAND" in # is not making any attempt to do escaping at all, we might as well try. # shellcheck disable=SC2039 quoted=$(printf '%q ' "$@" 2>/dev/null || true) - # printf %q behaves oddly with zero args (it acts as though it recieved one empty arg) + # printf %q behaves oddly with zero args (it acts as though it received one empty arg) # so we ignore that case. if [ -z "$quoted" ] || [ $# -eq 0 ]; then quoted="$*"