From 79c6af799c8eb0bd990ac0f3bf0a112a15a2947e Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 25 Jun 2014 15:25:09 -0400 Subject: [PATCH] BString docs: Remove extra "to" in AppendChars() string param Thanks stippi for noticing this oversight. --- docs/user/support/String.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/support/String.dox b/docs/user/support/String.dox index 680fcabfb6..c855010a8a 100644 --- a/docs/user/support/String.dox +++ b/docs/user/support/String.dox @@ -663,7 +663,7 @@ \fn BString& BString::AppendChars(const BString& string, int32 charCount) \brief UTF-8 aware version of Append(const BString&, int32). - \param string The \a string to append to. + \param string The \a string to append. \param charCount The maximum number of UTF-8 characters to append. \return This method always returns \c *this. @@ -678,7 +678,7 @@ \fn BString& BString::AppendChars(const char* string, int32 charCount) \brief UTF-8 aware version of Append(const char*, int32). - \param string The \a string to append to. + \param string The \a string to append. \param charCount The maximum number of UTF-8 characters to append. \return This method always returns \c *this.