From 3b756a1f3ca6c5fc1f2b549ea4d3be84348a63ca Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Wed, 28 Nov 2018 15:45:00 +0000 Subject: [PATCH] config/functions: fix comment --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index f25325e1bc..d93b501a95 100644 --- a/config/functions +++ b/config/functions @@ -38,7 +38,7 @@ listcontains() { } # remove item(s) from list. -# looping makes it greedy (eg. removefromlist "abc def ghi" "(abc|def)" will work). +# looping makes it greedy (eg. listremoveitem "abc def ghi" "(abc|def)" removes both "abc" and "def"). listremoveitem() { local data="${1}" odata tmp_array if [ -n "$1" -a -n "$2" ]; then