@@ -311,13 +311,13 @@ impl<'a> RowFormatter<'a> {
311311 bytes_column. bytes
312312 } ;
313313 to_magnitude_and_suffix ( size. into ( ) , SuffixType :: HumanReadable ( h) , true )
314- } else {
314+ } else {
315315 match & self . options . block_size {
316- /// if it has a suffix, append it to the size (but not on the 'total' row)
316+ // if it has a suffix, append it to the size (but not on the 'total' row)
317317 BlockSize :: PrefixedBytes ( _, suffix) if !self . is_total_row => {
318- format ! ( "{}{}" , size , suffix )
318+ format ! ( "{size}{suffix}" )
319319 }
320- /// else, just print the raw number as before
320+ // else, just print the raw number as before
321321 _ => size. to_string ( ) ,
322322 }
323323 } ;
@@ -332,11 +332,11 @@ impl<'a> RowFormatter<'a> {
332332 to_magnitude_and_suffix ( size, SuffixType :: HumanReadable ( h) , true )
333333 } else {
334334 match & self . options . block_size {
335- /// if it has a suffix, append it to the size (but not on the 'total' row)
335+ // if it has a suffix, append it to the size (but not on the 'total' row)
336336 BlockSize :: PrefixedBytes ( _, suffix) if !self . is_total_row => {
337- format ! ( "{}{}" , size , suffix )
337+ format ! ( "{size}{suffix}" )
338338 }
339- /// else, just print the raw number as before
339+ // else, just print the raw number as before
340340 _ => size. to_string ( ) ,
341341 }
342342 } ;
0 commit comments