Skip to content

Commit 028d272

Browse files
committed
minor spacing edits
1 parent abf5f22 commit 028d272

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

_episodes/08-putting-it-all-together.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@ plt.show() # not necessary in Jupyter Notebooks
292292
> > fig, ax = plt.subplots()
293293
> > flood = discharge[(discharge["datetime"] >= "2013-09-11") &
294294
(discharge["datetime"] < "2013-09-15")]
295-
>>
295+
> >
296296
> > ax2 = fig.add_axes([0.65, 0.575, 0.25, 0.3])
297-
>> flood.plot(x ="datetime", y="flow_rate", ax=ax)
297+
> > flood.plot(x ="datetime", y="flow_rate", ax=ax)
298298
> > discharge.plot(x ="datetime", y="flow_rate", ax=ax2)
299299
> > ax2.legend().set_visible(False)
300300
@@ -357,4 +357,3 @@ save as a text file with a `.py` extension and run in the command line).
357357
{: .challenge}
358358
359359
{% include links.md %}
360-

0 commit comments

Comments
 (0)