From b4d7e13d2494df279f8f8d6e7586556a1831a547 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Sat, 6 Aug 2016 22:41:19 +0200 Subject: [PATCH] small additions & changes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian Hoß --- README.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index a4764b9..7475580 100755 --- a/README.asciidoc +++ b/README.asciidoc @@ -162,7 +162,7 @@ Megabyte unit = Megabyte.valueOf(BigInteger.valueOf(1000000)) // 1 000 000 Byte The `StorageUnits` class offers two factory methods that automatically pick the best-matching unit for a given number of bytes. -==== Binary Units +==== Binary-prefixed Units [source,java] ---- @@ -175,7 +175,7 @@ StorageUnit unit = StorageUnits.binaryValueOf(BigInteger.valueOf(256)) // StorageUnit unit = StorageUnits.binaryValueOf(BigInteger.valueOf(1048576)) // Mebibyte (1.00 MiB) ---- -==== Metric Units +==== Metric-prefixed Units [source,java] ---- -- 2.11.4.GIT