You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2018/11/26 04:52:08 UTC

svn commit: r1847453 - /subversion/trunk/subversion/svn/filesize.c

Author: brane
Date: Mon Nov 26 04:52:08 2018
New Revision: 1847453

URL: http://svn.apache.org/viewvc?rev=1847453&view=rev
Log:
* subversion/svn/filesize.c (format_size): Fix typo in comment ... again.

/me really improved my commit stats

Modified:
    subversion/trunk/subversion/svn/filesize.c

Modified: subversion/trunk/subversion/svn/filesize.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/filesize.c?rev=1847453&r1=1847452&r2=1847453&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/filesize.c (original)
+++ subversion/trunk/subversion/svn/filesize.c Mon Nov 26 04:52:08 2018
@@ -76,9 +76,9 @@ format_size(double human_readable_size,
            APR's formatter completely ignores the locale. So we use the
            good, old, standard, *dangerous* sprintf() to format the size.
 
-           But, on the bright side, we require sure that the number has
-           no more than 3 non-fractional digits. So the call to sprintf()
-           here should be safe. */
+           But, on the bright side, we require that the number has no more
+           than 3 non-fractional digits. So the call to sprintf() here
+           should be safe. */
   const double absolute_human_readable_size = fabs(human_readable_size);
   const char *const suffix = (long_units ? order[index].suffix
                               : order[index].short_suffix);