Skip to content

Commit 3edd42d

Browse files
Merge pull request kunal-kushwaha#512 from soham-samanta/patch-5
Update CustomGenArrayList.java
2 parents 13462fc + 1e23055 commit 3edd42d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/17-oop/code/src/com/kunal/generics/CustomGenArrayList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class CustomGenArrayList<T> {
99

1010
private Object[] data;
1111
private static int DEFAULT_SIZE = 10;
12-
private int size = 0; // also working as inde value
12+
private int size = 0; // also working as index value
1313

1414
public CustomGenArrayList() {
1515
data = new Object[DEFAULT_SIZE];

0 commit comments

Comments
 (0)