We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3edd42d + 995600e commit e18b3e9Copy full SHA for e18b3e9
lectures/17-oop/code/src/com/kunal/generics/CustomArrayList.java
@@ -7,7 +7,7 @@ public class CustomArrayList {
7
8
private int[] data;
9
private static int DEFAULT_SIZE = 10;
10
- private int size = 0; // also working as inde value
+ private int size = 0; // also working as index value
11
12
public CustomArrayList() {
13
this.data = new int[DEFAULT_SIZE];
0 commit comments