diff --git a/1000-hours/public/jupyter-notebooks/spelling-rules.ipynb b/1000-hours/public/jupyter-notebooks/spelling-rules.ipynb
index bc708953..2fb29f6b 100644
--- a/1000-hours/public/jupyter-notebooks/spelling-rules.ipynb
+++ b/1000-hours/public/jupyter-notebooks/spelling-rules.ipynb
@@ -55,39 +55,22 @@
},
{
"cell_type": "code",
- "execution_count": 105,
+ "execution_count": null,
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
- "### tr\n",
- "* **tr**\n",
- "\t- track træk \n",
- " \t- tree triː \n",
- " \t- trick trɪk \n",
- "\n",
- "### dr\n",
- "* **dr**\n",
- "\t- drive draɪv \n",
- " \t- dream driːm \n",
- " \t- drink drɪŋk \n",
- "\n",
- "phonetics_not_exist: \n",
- "\n",
- "track,tree,trick,drive,dream,drink,\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"text =\"\"\"\n",
- "### `ts`\n",
- "* \"ts\" - clients, students, treats\n",
+ "### `w`\n",
+ "\n",
+ "* \"w\" - week, weird, wife\n",
+ "* \"wh\" - white, what, why\n",
+ "\n",
+ "### `j`\n",
+ "\n",
+ "* \"y\" - yes, yet, yoke\n",
+ "* \"i\" - onion, million\n",
+ "* \"j\" - jager, hallelujah\n",
"\n",
- "### `dz`\n",
- "* \"ds\" - deeds, records, words\n",
"\"\"\"\n",
"\n",
"words = \"\"\n",
@@ -123,31 +106,16 @@
},
{
"cell_type": "code",
- "execution_count": 106,
+ "execution_count": null,
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "['track', 'tree', 'trick', 'drive', 'dream', 'drink']\n",
- "track\n",
- "tree\n",
- "trick\n",
- "drive\n",
- "dream\n",
- "drink\n",
- "Files created!\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"import asyncio\n",
"import edge_tts\n",
"import pygame\n",
"text = words.rstrip(\",\")\n",
"Wordlist = text.split(\",\")\n",
- "# Wordlist = ['chivvy']\n",
+ "\n",
"print(Wordlist)\n",
"for w in Wordlist:\n",
" # for VOICE in ['en-US-GuyNeural', 'en-US-JennyNeural', 'en-GB-RyanNeural', 'en-GB-SoniaNeural']:\n",