From: Joel Rosdahl Date: Sun, 4 Jul 2021 16:45:14 +0000 (+0200) Subject: Fix typo in Util::split_into_views doc string X-Git-Tag: v4.4~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40b6642e1f54f8b61a232e1d36b739c43ba6c8e4;p=thirdparty%2Fccache.git Fix typo in Util::split_into_views doc string --- diff --git a/src/Util.hpp b/src/Util.hpp index 6e3ed4a46..0d2504670 100644 --- a/src/Util.hpp +++ b/src/Util.hpp @@ -419,7 +419,7 @@ size_change_kibibyte(const Stat& old_stat, const Stat& new_stat) } // Split `input` into words at any of the characters listed in `separators`. -// These words are a view into `input`; empty words are omitted. `separators2` +// These words are a view into `input`; empty words are omitted. `separators` // must neither be the empty string nor a nullptr. std::vector split_into_views(nonstd::string_view input, const char* separators);