From a5acc1c07afac10fed697f0a1321b1baf202b857 Mon Sep 17 00:00:00 2001 From: Bonifacio de Oliveira Date: Sun, 9 Jul 2017 17:25:03 -0300 Subject: [PATCH 1/3] Update Exercises-4.ipynb fix another typo :) --- Exercises-4.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From c8c0e9c8fbb6dfaa9536b88a5e6e4bd41649958e Mon Sep 17 00:00:00 2001 From: Bonifacio de Oliveira Date: Sun, 9 Jul 2017 22:19:06 -0300 Subject: [PATCH 2/3] fix typo on solution 1 notebook --- Solutions-1.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", From a84b9c62d8db53ffa8fc41e59db83314a342524f Mon Sep 17 00:00:00 2001 From: Bonifacio de Oliveira Date: Sun, 9 Jul 2017 22:19:46 -0300 Subject: [PATCH 3/3] fix typo on solution 4 notebook --- Solutions-4.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",