Skip to content

Commit

Permalink
Merge pull request #3 from bzcorn/master
Browse files Browse the repository at this point in the history
Minor typo found in OOP lesson
  • Loading branch information
jmportilla committed Dec 5, 2015
2 parents d71c284 + 3a1150b commit bd93895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Object Oriented Programming.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
"\n",
"Methods are functions defined inside the body of a class. They are used to perform operations with the attributes of our objects. Methods are essential in encapsulation concept of the OOP paradigm. This is essential in dividing responsibilities in programming, especially in large applications.\n",
"\n",
"You can basically think of methods as functions acting on an Object that take the Object itself into accoutn through its *self* argument.\n",
"You can basically think of methods as functions acting on an Object that take the Object itself into account through its *self* argument.\n",
"\n",
"Lets go through an example of creating a Circle class:"
]
Expand Down Expand Up @@ -534,7 +534,7 @@
"metadata": {},
"source": [
"##Special Methods\n",
"Finally lets go over special methods. Classes in Python can implement certain operations with special method names. These methods are not actually called directly but by Python specific language syntac. For example Lets create a Book class:"
"Finally lets go over special methods. Classes in Python can implement certain operations with special method names. These methods are not actually called directly but by Python specific language syntax. For example Lets create a Book class:"
]
},
{
Expand Down

0 comments on commit bd93895

Please sign in to comment.