From d641bb5facf00096178e296df66f782f54edb37f Mon Sep 17 00:00:00 2001 From: Gezim Sejdiu Date: Sun, 5 Dec 2021 01:48:57 +0100 Subject: [PATCH] Fix typo in 'Wildcards match repeated characters' table. --- 14-Strings-and-Regular-Expressions.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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\"`` |" ] },