From d55dea96931d3035c61090212939b394907572bb Mon Sep 17 00:00:00 2001 From: Sxela Date: Sat, 29 Jun 2019 14:51:11 +0300 Subject: [PATCH] Fix 'sytax' typo --- 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..a42dcfc 100644 --- a/14-Strings-and-Regular-Expressions.ipynb +++ b/14-Strings-and-Regular-Expressions.ipynb @@ -1156,7 +1156,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Regular expressions generalize this \"wildcard\" idea to a wide range of flexible string-matching sytaxes.\n", + "Regular expressions generalize this \"wildcard\" idea to a wide range of flexible string-matching syntaxes.\n", "The Python interface to regular expressions is contained in the built-in ``re`` module; as a simple example, let's use it to duplicate the functionality of the string ``split()`` method:" ] },