This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/trim_string_in_place
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/trim_string_in_place
by this push:
new d04b2c19 Fix two typos.
d04b2c19 is described below
commit d04b2c1916280d6db891c606f4451aab85a04bab
Author: PengZheng <[email protected]>
AuthorDate: Sat May 6 20:02:16 2023 +0800
Fix two typos.
---
libs/utils/include/celix_utils.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libs/utils/include/celix_utils.h b/libs/utils/include/celix_utils.h
index 53a98d08..ff1d3d32 100644
--- a/libs/utils/include/celix_utils.h
+++ b/libs/utils/include/celix_utils.h
@@ -101,14 +101,14 @@ CELIX_UTILS_EXPORT bool
celix_utils_containsWhitespace(const char* s);
/**
* @brief Returns a trimmed string.
*
- * The trim will remove eny leading and trailing whitespaces (' ', '\t', etc
based on `isspace`)/
+ * The trim will remove any leading and trailing whitespaces (' ', '\t', etc
based on `isspace`)/
* Caller is owner of the returned string.
*/
CELIX_UTILS_EXPORT char* celix_utils_trim(const char* string);
/**
* @brief Trims the provided string in place.
*
- * The trim will remove eny leading and trailing whitespaces (' ', '\t', etc
based on `isspace`)/
+ * The trim will remove any leading and trailing whitespaces (' ', '\t', etc
based on `isspace`)/
* @param string the string to be trimmed.
* @return string.
*/