You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/concept/karls-languages/.docs/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ stringContainer.set(42);
56
56
## Lists
57
57
58
58
**Lists** are the ordered sequence collection in Java.
59
-
Unlike arrays, a [`List`](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html) can grow in size to accomodate any number of items.
59
+
Unlike arrays, a [`List`](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html) can grow in size to accommodate any number of items.
60
60
One standard implementation is the `ArrayList` which is backed by a re-sizable array.
61
61
Another standard implementation is the `LinkedList` class which is backed by a doubly-linked list.
0 commit comments