Skip to content

Commit 49152e6

Browse files
committed
Merge pull request jrjohansson#14 from kostyabazhanov/master
Fix misprints.
2 parents ba77020 + 85fe99a commit 49152e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎Lecture-1-Introduction-to-Python-Programming.ipynb‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3018,7 +3018,7 @@
30183018
"cell_type": "markdown",
30193019
"metadata": {},
30203020
"source": [
3021-
"This technique is useful for exmample when we want to pass a simple function as an argument to another function, like this:"
3021+
"This technique is useful for example when we want to pass a simple function as an argument to another function, like this:"
30223022
]
30233023
},
30243024
{
@@ -3128,7 +3128,7 @@
31283128
"input": [
31293129
"p1 = Point(0, 0) # this will invoke the __init__ method in the Point class\n",
31303130
"\n",
3131-
"print(p1) # this will invode the __str__ method"
3131+
"print(p1) # this will invoke the __str__ method"
31323132
],
31333133
"language": "python",
31343134
"metadata": {},

‎Lecture-5-Sympy.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@
11261126
"source": [
11271127
"### Differentiation\n",
11281128
"\n",
1129-
"Differentiation is usually simple. Use the `diff` function. The first argument is the expression to take the derivative of, and the second argument is the symbol by which to take the deriative:"
1129+
"Differentiation is usually simple. Use the `diff` function. The first argument is the expression to take the derivative of, and the second argument is the symbol by which to take the derivative:"
11301130
]
11311131
},
11321132
{

0 commit comments

Comments
 (0)