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:46:12 UTC

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

Author: brane
Date: Mon Nov 26 04:46:12 2018
New Revision: 1847452

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

Found by: danielsh

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=1847452&r1=1847451&r2=1847452&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/filesize.c (original)
+++ subversion/trunk/subversion/svn/filesize.c Mon Nov 26 04:46:12 2018
@@ -76,7 +76,7 @@ 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 brigt side, we require sure that the number has
+           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. */
   const double absolute_human_readable_size = fabs(human_readable_size);