Skip to content

Commit

Permalink
📝 Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jemrobinson committed Jan 27, 2023
1 parent 19251b3 commit 6eae34d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion module02_intermediate_python/02_01_functions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"In this example, we're using `[:]` to access into the same list, and write it's data.\n",
"In this example, we're using `[:]` to access into the same list, and write its data.\n",
"\n",
" vec = [element*2 for element in vec]\n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We can loop over each element in out list of coordinates, and get a map for that place:"
"We can loop over each element in our list of coordinates, and get a map for that place:"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions module02_intermediate_python/02_08_classroom_exercises.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"id": "333e37f3",
"metadata": {},
"source": [
"Investigate the similarities and differences between the responses (if any) from the `numpy`, `scipy`, `statistics`, and `math` modules to the following calculations:\n",
"Investigate the similarities and differences between the responses (if any) from the `numpy`, `scipy`, `statistics` and `math` modules to the following calculations:\n",
"\n",
"\n",
"$\\pi$\n",
Expand All @@ -168,7 +168,7 @@
"id": "57f50256",
"metadata": {},
"source": [
"For those interested, each of these libraries has their own documentation. [NumPy](https://numpy.org/doc/stable/user/whatisnumpy.html), [SciPy](https://docs.scipy.org/doc/scipy/tutorial/general.html), [statistics](https://docs.python.org/3/library/statistics.html), and [math](https://docs.python.org/3/library/math.html)"
"For those interested, each of these libraries has their own documentation. [NumPy](https://numpy.org/doc/stable/user/whatisnumpy.html), [SciPy](https://docs.scipy.org/doc/scipy/tutorial/general.html), [statistics](https://docs.python.org/3/library/statistics.html) and [math](https://docs.python.org/3/library/math.html)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion solutions/module_02.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
"\n",
"Can use ```dir(X)``` to list the attributes of the modules\n",
"\n",
"There will be some depreciation warnings from scipy instructing users to go use numpy or numpy.lib (which can also be investigated via ```dir(np.lib)``` \n",
"There will be some depreciation warnings from scipy instructing users to go use numpy or numpy.lib (which can also be investigated via ```dir(np.lib)```\n",
"\n",
"Statistics will return the mean as an integer whereas numpy and scipy will return a float.\n",
"\n",
Expand Down

0 comments on commit 6eae34d

Please sign in to comment.