1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-07 15:26:45 +02:00

Fixed typo at BigInteger assignment

This commit is contained in:
Andy
2015-10-31 16:57:22 +10:30
parent edfc99e198
commit 34c7c6acb2

View File

@@ -128,7 +128,7 @@ public class LearnJava {
// //
// BigInteger can be initialized using an array of bytes or a string. // BigInteger can be initialized using an array of bytes or a string.
BigInteger fooBigInteger = new BigDecimal(fooByteArray); BigInteger fooBigInteger = new BigInteger(fooByteArray);
// BigDecimal - Immutable, arbitrary-precision signed decimal number // BigDecimal - Immutable, arbitrary-precision signed decimal number