Skip to content

Commit 4103bd3

Browse files
Fix typo - replace lista with list.
Code shows lista.get, however the list's name is list.
1 parent 52c6d71 commit 4103bd3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

data/part-3/2-lists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1775,8 +1775,8 @@ list.add("Third");
17751775

17761776
list.remove("First");
17771777

1778-
System.out.println("Index 0 so the first value: " + lista.get(0));
1779-
System.out.println("Index 1 so the second value: " + lista.get(1));
1778+
System.out.println("Index 0 so the first value: " + list.get(0));
1779+
System.out.println("Index 1 so the second value: " + list.get(1));
17801780
```
17811781

17821782
<!-- <sample-output>

0 commit comments

Comments
 (0)