diff --git a/Exercises-4.ipynb b/Exercises-4.ipynb index 15a2add..04f26d0 100644 --- a/Exercises-4.ipynb +++ b/Exercises-4.ipynb @@ -378,7 +378,7 @@ } }, { - "source": "### Plot the fraction of roles that have been 'actor' roles each year in the hitsory of film.", + "source": "### Plot the fraction of roles that have been 'actor' roles each year in the history of film.", "cell_type": "markdown", "metadata": { "collapsed": true @@ -472,4 +472,4 @@ } } } -} \ No newline at end of file +} diff --git a/Solutions-1.ipynb b/Solutions-1.ipynb index 998a016..8b674e7 100644 --- a/Solutions-1.ipynb +++ b/Solutions-1.ipynb @@ -1762,7 +1762,7 @@ } ], "source": [ - "# How many roles were avilable for actresses in the 1950s?\n", + "# How many roles were available for actresses in the 1950s?\n", "\n", "c = cast\n", "c = c[c.year // 10 == 195]\n", diff --git a/Solutions-4.ipynb b/Solutions-4.ipynb index 36fdf47..d1ad3f4 100644 --- a/Solutions-4.ipynb +++ b/Solutions-4.ipynb @@ -517,7 +517,7 @@ ], "source": [ "# Plot the fraction of roles that have been 'actor' roles\n", - "# each year in the hitsory of film.\n", + "# each year in the history of film.\n", "\n", "c = cast\n", "c = c.groupby(['year', 'type']).size()\n",