Skip to content

Commit 9f05a19

Browse files
authored
fix: solve typo in INSTRUCTIONS.md (#2764)
1 parent f8a171c commit 9f05a19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/concept/karls-languages/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It would be very exciting if Karl wants to learn Java or Kotlin!
66

77
## 1. Define a function to check if the language list is empty
88

9-
Karl needs to know if his list of languages ever becomes empty so he can go find more to learn!
9+
Karl needs to know if his list of languages ever becomes empty, so he can go find more to learn!
1010
Define a method called `isEmpty` which returns `true` if there are no languages in the list.
1111

1212
```java

exercises/concept/karls-languages/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ stringContainer.set(42);
5656
## Lists
5757

5858
**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.
6060
One standard implementation is the `ArrayList` which is backed by a re-sizable array.
6161
Another standard implementation is the `LinkedList` class which is backed by a doubly-linked list.
6262

0 commit comments

Comments
 (0)