From 6bf8c530c6f8f2b02c5b58121c262a4fdb5c6498 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Mon, 23 Jan 2023 14:30:47 +0100 Subject: [PATCH] Fix comment typo --- util/json.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/json.go b/util/json.go index 48d0e09..d21b4cf 100644 --- a/util/json.go +++ b/util/json.go @@ -101,8 +101,8 @@ func StringMatcher(dst *string) func(any) error { } } -// StringTreeMatcher returns a matcher which add strings from -// stringss and recursively from arrays from strings. +// StringTreeMatcher returns a matcher which addis strings from +// strings and recursively from arrays of strings. func StringTreeMatcher(strings *[]string) func(any) error { // Only add unique strings. unique := func(s string) {