8000 Merge pull request #17966 from ekrecker/patch-1 · matplotlib/matplotlib@6f25240 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6f25240

Browse files
authored
Merge pull request #17966 from ekrecker/patch-1
Fix some words
2 parents 760a9d5 + e7faf1b commit 6f25240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/advanced/blitting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
ln.set_ydata(np.sin(x + (j / 100) * np.pi))
9090
# re-render the artist, updating the canvas state, but not the screen
9191
ax.draw_artist(ln)
92-
# copy the image to the GUI state, but screen might not changed yet
92+
# copy the image to the GUI state, but screen might not be changed yet
9393
fig.canvas.blit(fig.bbox)
9494
# flush any pending GUI events, re-painting the screen if needed
9595
fig.canvas.flush_events()
@@ -216,7 +216,7 @@ def update(self):
216216
# update the artists
217217
ln.set_ydata(np.sin(x + (j / 100) * np.pi))
218218
fr_number.set_text("frame: {j}".format(j=j))
219-
# tell the blitting manager to do it's thing
219+
# tell the blitting manager to do its thing
220220
bm.update()
221221

222222
###############################################################################

0 commit comments

Comments
 (0)
0