From 5ef6b78201fe57beb6193176ac7092e215768616 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Fri, 12 Aug 2016 20:10:12 +0200 Subject: [PATCH] fix return type MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian Hoß --- README.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index 8e2f4a1..40bbd8f 100755 --- a/README.asciidoc +++ b/README.asciidoc @@ -425,7 +425,7 @@ Each unit can be expressed as a fraction of another unit (precise up to 24 decim import static de.xn__ho_hia.storage_unit.StorageUnits.*; BigDecimal kilobytes = megabyte(1).inKilobyte() // 1 000 -BigDecimal bytes = kibibyte(2).inByte() // 2 048 +BigInteger bytes = kibibyte(2).inByte() // 2 048 BigDecimal terabytes = gigabyte(15).inTerabyte() // 0.015 ---- -- 2.11.4.GIT