diff options
author | Bojan Smojver <bojan@apache.org> | 2009-06-09 00:24:45 +0000 |
---|---|---|
committer | Bojan Smojver <bojan@apache.org> | 2009-06-09 00:24:45 +0000 |
commit | fe105b43a1d06142f666106280da995db61c7f65 (patch) | |
tree | bf3e0dc9ebd895ef2325f48643eedbe46b0bca5c /include/apr_strings.h | |
parent | 5f46347aced7a5111cbdc1fbfa46e745d84bbbba (diff) | |
download | apr-fe105b43a1d06142f666106280da995db61c7f65.tar.gz |
Fix documentation for apr_collapse_spaces().
PR 47322.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@782838 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_strings.h')
-rw-r--r-- | include/apr_strings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_strings.h b/include/apr_strings.h index 019017a1d..d43412cf8 100644 --- a/include/apr_strings.h +++ b/include/apr_strings.h @@ -200,11 +200,11 @@ APR_DECLARE(char *) apr_cpystrn(char *dst, const char *src, apr_size_t dst_size); /** - * Strip spaces from a string + * Remove all whitespace from a string * @param dest The destination string. It is okay to modify the string * in place. Namely dest == src * @param src The string to rid the spaces from. - * @return The destination string, dest. + * @return A pointer to the destination string's null terminator. */ APR_DECLARE(char *) apr_collapse_spaces(char *dest, const char *src); |