Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
- Added a space between unit and value returned by convertToHumanReadableByteCount to make it easier to read

Signed-off-by: Shubham Verma <[email protected]>
  • Loading branch information
VermaSh committed Apr 10, 2018
1 parent 00e321c commit 88178cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NodeHelper.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ class NodeHelper {
*/
humanReadable = humanReadable/1000;

return String.format("%d%sB", (Math.rint(humanReadable)).intValue(), pre);
return String.format("%d %sB", (Math.rint(humanReadable)).intValue(), pre);
}

/**
Expand Down

0 comments on commit 88178cd

Please sign in to comment.