diff --git a/data/part-5/1-more-lists.md b/data/part-5/1-more-lists.md index 2eca3bf50..c8a0f9ef1 100644 --- a/data/part-5/1-more-lists.md +++ b/data/part-5/1-more-lists.md @@ -333,7 +333,7 @@ print(my_matrix) -Like any other list, the rows of the matrix can be traversed wth a `for` loop. The following code prints out each row of the matrix on a separate line: +Like any other list, the rows of the matrix can be traversed with a `for` loop. The following code prints out each row of the matrix on a separate line: ```python my_matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]