diff options
author | Andy <andrewgallasch@gmail.com> | 2015-10-31 16:57:22 +1030 |
---|---|---|
committer | Andy <andrewgallasch@gmail.com> | 2015-10-31 16:57:22 +1030 |
commit | 34c7c6acb22c934f879a353f3ba92b38b602f7fc (patch) | |
tree | 73665d87791a5d4e85827baf87ee24387aa576c1 | |
parent | edfc99e198fd2e87802ea81d6779fbadfab64919 (diff) |
Fixed typo at BigInteger assignment
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index 1813f81c..901e2dad 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -128,7 +128,7 @@ public class LearnJava { // // 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 |