Skip to content
This repository was archived by the owner on Jan 22, 2020. It is now read-only.

Commit 7261a50

Browse files
authored
Merge pull request fbaptiste#30 from WillieMaddox/patch-21
Update 05 - Generator Expressions.ipynb
2 parents 5e65d61 + 59a5ee2 commit 7261a50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Part 2/Section 06 - Generators/05 - Generator Expressions.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@
326326
"cell_type": "markdown",
327327
"metadata": {},
328328
"source": [
329-
"Let's use some of the same example we saw with nested list comprehensions."
329+
"Let's use some of the same examples we saw with nested list comprehensions."
330330
]
331331
},
332332
{
@@ -767,7 +767,7 @@
767767
"\n",
768768
"One main advantage to using generators is that we do not need the up-front calculations - if we end up not consuming the entire iterator, we have saved some time.\n",
769769
"\n",
770-
"The other advantage, as we saw with lazy iteratorsm is that you do not need to have the entire data set in memory at one time. We saw an example of this when reading files - we can read extremely large files one row at a time, without having to store the entire file in memory."
770+
"The other advantage, as we saw with lazy iterators is that you do not need to have the entire data set in memory at one time. We saw an example of this when reading files - we can read extremely large files one row at a time, without having to store the entire file in memory."
771771
]
772772
},
773773
{

0 commit comments

Comments
 (0)