Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions functions_and_classes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@
"\n",
"<b>Tip:</b> 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:"
]
},
{
Expand Down Expand Up @@ -1136,7 +1136,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"<b> Multiple Inheritence </b>"
"<b> Multiple Inheritance </b>"
]
},
{
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions general_tips.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"# Additional Operators<a id=\"op\"></a>\n",
"[Return to table of contents](#toc)\n",
"\n",
"Operators bedies you typical `+`, `-`, `/`, etc."
"Operators besides you typical `+`, `-`, `/`, etc."
]
},
{
Expand Down Expand Up @@ -81,7 +81,7 @@
"source": [
"<b>Or assignment</b>\n",
"\n",
"Assigning a variable based off of another variable's assignment."
"Assigning a variable based on another variable's assignment."
]
},
{
Expand Down