diff --git a/functions_and_classes.ipynb b/functions_and_classes.ipynb
index ef7bc8c..fc0f7ae 100644
--- a/functions_and_classes.ipynb
+++ b/functions_and_classes.ipynb
@@ -989,7 +989,7 @@
"\n",
"Tip: When creating classes `self` is typical convention so please use self, but self can be replaced with anything you'd like.\n",
"\n",
- "Simple overview of class inheretance. If you want to inherit instance variables from another clsss following this syntax:"
+ "Simple overview of class inheritance. If you want to inherit instance variables from another class following this syntax:"
]
},
{
@@ -1136,7 +1136,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- " Multiple Inheritence "
+ " Multiple Inheritance "
]
},
{
@@ -1145,7 +1145,7 @@
"metadata": {},
"outputs": [],
"source": [
- "\"\"\"This is how you set up your classes to be consumed for multiple inheritence\n",
+ "\"\"\"This is how you set up your classes to be consumed for multiple inheritance\n",
"\n",
"https://stackoverflow.com/questions/34884567/python-multiple-inheritance-passing-arguments-to-constructors-using-super\n",
"\"\"\"\n",
diff --git a/general_tips.ipynb b/general_tips.ipynb
index 073ce5c..50c0489 100644
--- a/general_tips.ipynb
+++ b/general_tips.ipynb
@@ -39,7 +39,7 @@
"# Additional Operators\n",
"[Return to table of contents](#toc)\n",
"\n",
- "Operators bedies you typical `+`, `-`, `/`, etc."
+ "Operators besides you typical `+`, `-`, `/`, etc."
]
},
{
@@ -81,7 +81,7 @@
"source": [
"Or assignment\n",
"\n",
- "Assigning a variable based off of another variable's assignment."
+ "Assigning a variable based on another variable's assignment."
]
},
{