From 697af5736d226895b68bd0d0e78ff667943f00a1 Mon Sep 17 00:00:00 2001 From: Akash Reddy Jammula <87650180+Akash3121@users.noreply.github.com> Date: Wed, 7 Sep 2022 10:55:24 +0530 Subject: [PATCH] updated typo updated typo in Primitive Lists Example:38 from creCreate to Create. Update 2-Collection_Containers.adoc changed from Create to create, 'c' smallcase. --- docs/2-Collection_Containers.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2-Collection_Containers.adoc b/docs/2-Collection_Containers.adoc index a5cafacf6c..8b45f17deb 100644 --- a/docs/2-Collection_Containers.adoc +++ b/docs/2-Collection_Containers.adoc @@ -937,7 +937,7 @@ They are named *{IntArrayList}*, *{FloatArrayList}* etc. Current JVMs use one byte per boolean in a *boolean[]* (instead of one bit per boolean). Thus the *BooleanArrayList* is backed by a *java.util.BitSet* as an optimization. -.our ways to creCreate an *IntArrayList*, use one of the following: +.our ways to create an *IntArrayList*, use one of the following: ==== [source,java] ----