summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro-Dantas <ribeirodantasdm@gmail.com>2023-09-11 11:37:45 -0300
committerGitHub <noreply@github.com>2023-09-11 11:37:45 -0300
commit5f4306a48206be279e2a7cb8ee310c51b672ef00 (patch)
treea6f93ea057b73b111cbf040d0aa56b1d4a613840
parent2de99e8d0e4e2c460df2f558420695b9862c88ab (diff)
parent1590fba5f2a7c53b180bd5257cc13cbe79c621fe (diff)
Merge pull request #4753 from noahmarro/patch-1
[java/en] typo in java.html.markdown
-rw-r--r--java.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown
index 10b2315b..6003f8ef 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -185,7 +185,7 @@ public class LearnJava {
//
// BigInteger is a data type that allows programmers to manipulate
// 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 fooBigInteger = new BigInteger(fooByteArray);