From: Joel Rosdahl Date: Wed, 4 Aug 2021 19:27:29 +0000 (+0200) Subject: chore: Fix typo in comment X-Git-Tag: v4.4~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21a66d52ef9900d6aae2593f354b104a09e59492;p=thirdparty%2Fccache.git chore: Fix typo in comment --- diff --git a/src/util/string.hpp b/src/util/string.hpp index 4f782c37a..c3a15e881 100644 --- a/src/util/string.hpp +++ b/src/util/string.hpp @@ -49,7 +49,7 @@ join(const T& begin, const T& end, const nonstd::string_view delimiter); // Parse a string into a signed integer. // -// Return an error string if `value` cannot be parsed as an int64_t or if the +// Returns an error string if `value` cannot be parsed as an int64_t or if the // value falls out of the range [`min_value`, `max_value`]. `min_value` and // `max_value` default to min and max values of int64_t. `description` is // included in the error message for range violations.