diff --git a/14-Strings-and-Regular-Expressions.ipynb b/14-Strings-and-Regular-Expressions.ipynb index ca39b64..dce4dfb 100644 --- a/14-Strings-and-Regular-Expressions.ipynb +++ b/14-Strings-and-Regular-Expressions.ipynb @@ -1813,7 +1813,7 @@ "| ``?`` | Match zero or one repetitions of preceding | ``\"ab?\"`` matches ``\"a\"`` or ``\"ab\"`` |\n", "| ``*`` | Match zero or more repetitions of preceding | ``\"ab*\"`` matches ``\"a\"``, ``\"ab\"``, ``\"abb\"``, ``\"abbb\"``... |\n", "| ``+`` | Match one or more repetitions of preceding | ``\"ab+\"`` matches ``\"ab\"``, ``\"abb\"``, ``\"abbb\"``... but not ``\"a\"`` |\n", - "| ``{n}`` | Match ``n`` repetitions of preeeding | ``\"ab{2}\"`` matches ``\"abb\"`` |\n", + "| ``{n}`` | Match ``n`` repetitions of preceding | ``\"ab{2}\"`` matches ``\"abb\"`` |\n", "| ``{m,n}`` | Match between ``m`` and ``n`` repetitions of preceding | ``\"ab{2,3}\"`` matches ``\"abb\"`` or ``\"abbb\"`` |" ] },