Fix first typo

This commit is contained in:
ChillerDragon 2024-08-01 11:46:50 +08:00
parent 2c61177745
commit ef1d5fa78c

View file

@ -1612,7 +1612,7 @@ const char *str_find(const char *haystack, const char *needle);
* @param delim String to search for * @param delim String to search for
* @param offset Number of characters into the haystack * @param offset Number of characters into the haystack
* @param start Will be set to the first delimiter on the left side of the offset (or haystack start) * @param start Will be set to the first delimiter on the left side of the offset (or haystack start)
* @param end Will be set to the furst delimiter on the right side of the offset (or haystack end) * @param end Will be set to the first delimiter on the right side of the offset (or haystack end)
* *
* @return `true` if both delimiters were found * @return `true` if both delimiters were found
* @return 'false' if a delimiter is missing (it uses haystack start and end as fallback) * @return 'false' if a delimiter is missing (it uses haystack start and end as fallback)