We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75fcc6 commit 8287b5cCopy full SHA for 8287b5c
1 file changed
exercises/practice/pig-latin/.approaches/charat-substring/content.md
@@ -44,7 +44,7 @@ They are `private` because they don't need to be directly accessed from outside
44
because they don't need to be reassigned after being created.
45
They are `static` because they don't need to differ between object instantiations, so they can belong to the class itself.
46
47
-The `translate()` method starts be defining the [`ArrayList()`][arraylist] to hold the words to be output.
+The `translate()` method starts by defining the [`ArrayList()`][arraylist] to hold the words to be output.
48
The input `String` is then [`split()`][split] on a space to create the array of words.
49
50
A [for-each][for-each] loop is used to iterate the words.
0 commit comments