Skip to content

Commit 993ae4e

Browse files
committed
🎨 apply typos to ipynb
1 parent 1871abf commit 993ae4e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

1_1_matplotlib.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"- Built on NumPy arrays and designed to work with the broader SciPy stack.\n",
1111
"\n",
1212
"Inspiration for plots and overviews\n",
13-
"- # Material\n",
1413
"- [python-graph-gallery.com/](https://python-graph-gallery.com/)\n",
1514
"- [Matplotlib Gallery](https://matplotlib.org/stable/gallery/index.html)"
1615
]
@@ -330,11 +329,11 @@
330329
"outputs": [],
331330
"source": [
332331
"fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(7.4, 4))\n",
333-
"axes = axes.flatten() # in case of more than one dimension (saftey snippet for you)\n",
332+
"axes = axes.flatten() # in case of more than one dimension (safety snippet for you)\n",
334333
"ax = axes[0]\n",
335334
"n, bins, patches = ax.hist(x, bins=30, alpha=0.7, color=\"C0\")\n",
336335
"ax = axes[1]\n",
337-
"# Add a scecond plto here"
336+
"# Add a second plot here"
338337
]
339338
},
340339
{

0 commit comments

Comments
 (0)