Author: stsp
Date: Mon Aug 18 15:43:59 2014
New Revision: 1618638
URL: http://svn.apache.org/r1618638
Log:
* subversion/include/svn_string.h
(svn_cstring_strtoi64): Fix docstring.
Modified:
subversion/trunk/subversion/include/svn_string.h
Modified: subversion/trunk/subversion/include/svn_string.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_string.h?rev=1618638&r1=1618637&r2=1618638&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_string.h (original)
+++ subversion/trunk/subversion/include/svn_string.h Mon Aug 18 15:43:59 2014
@@ -524,8 +524,8 @@ svn_cstring_casecmp(const char *str1, co
* Parse the C string @a str into a 64 bit number, and return it in @a *n.
* Assume that the number is represented in base @a base.
* Raise an error if conversion fails (e.g. due to overflow), or if the
- * Leading whitespace in @a str is skipped in a locale-dependent way.
* converted number is smaller than @a minval or larger than @a maxval.
+ * Leading whitespace in @a str is skipped in a locale-dependent way.
*
* @since New in 1.7.
*/