diff --git a/006_Python_RegEx.ipynb b/006_Python_RegEx.ipynb index 3fc5251..f156abb 100644 --- a/006_Python_RegEx.ipynb +++ b/006_Python_RegEx.ipynb @@ -221,7 +221,7 @@ "source": [ "### 6. `+` - Plus\n", "\n", - "The plus symbol **`+`** matches **zero or more occurrences** of the pattern left to it.\n", + "The plus symbol **`+`** matches **one or more occurrences** of the pattern left to it.\n", "\n", "| Expression | String | Matched? | \n", "|:----| :--- |:--- |\n", @@ -238,7 +238,7 @@ "source": [ "### 7. `?` - Question Mark\n", "\n", - "The question mark symbol **`?`** matches **zero or more occurrences** of the pattern left to it.\n", + "The question mark symbol **`?`** matches **zero or one occurrence** of the pattern left to it.\n", "\n", "| Expression | String | Matched? | \n", "|:----| :--- |:--- |\n",