]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Fix typo in comment
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 4 Aug 2021 19:27:29 +0000 (21:27 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 4 Aug 2021 19:27:43 +0000 (21:27 +0200)
src/util/string.hpp

index 4f782c37ae0c62b1d0abf2c973699cc2390e6341..c3a15e8816db05263b412954c34998f15e08557f 100644 (file)
@@ -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.