Permalink
Browse files

Update Exercises-4.ipynb (#31)

Fix several more typos
  • Loading branch information...
1 parent 28c4e93 commit 9e74f09ab6aa2545002e1e525eb28ae83feb0fd9 @Bonifacio2 Bonifacio2 committed with Jul 10, 2017
Showing with 4 additions and 4 deletions.
  1. +2 −2 Exercises-4.ipynb
  2. +1 −1 Solutions-1.ipynb
  3. +1 −1 Solutions-4.ipynb
View
@@ -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 @@
}
}
}
-}
+}
View
@@ -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",
View
@@ -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",

0 comments on commit 9e74f09

Please sign in to comment.