1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-16 11:45:04 +02:00

Typo java.html.markdown

This commit is contained in:
noahmarro
2023-09-09 20:13:40 +02:00
committed by GitHub
parent fe3d3fd1ef
commit 1590fba5f2

View File

@@ -185,7 +185,7 @@ public class LearnJava {
// //
// BigInteger is a data type that allows programmers to manipulate // BigInteger is a data type that allows programmers to manipulate
// integers longer than 64-bits. Integers are stored as an array of // integers longer than 64-bits. Integers are stored as an array of
// of bytes and are manipulated using functions built into BigInteger // bytes and are manipulated using functions built into BigInteger
// //
// 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 BigInteger(fooByteArray); BigInteger fooBigInteger = new BigInteger(fooByteArray);