@@ -169,19 +169,19 @@ non-interactive mode) you may need to explicitly call `.pyplot.show`
169
169
to bring the windows onto your screen. If you only want to run the
170
170
GUI event loop for a fixed amount of time you can use `.pyplot.pause `.
171
171
This will both block the progress of your code (as if you had called
172
- `time.sleep `), raise ensure the current window is shown and if needed
172
+ `time.sleep `), ensure the current window is shown and if needed
173
173
re-drawn, and run the GUI event loop (so the windows are "live" for
174
- intrection ) for the specified period of time.
174
+ interaction ) for the specified period of time.
175
175
176
176
Being in "interactive mode" is orthogonal to the GUI event loop being
177
177
integrated with your command prompt. If you use `pyplot.ion `, but
178
- have not arrange for the event loop integration your figures will
178
+ have not arranged for the event loop integration, your figures will
179
179
appear but will not be "live" while the prompt is waiting for input.
180
180
You will not be able to pan/zoom and the figure may not even render
181
- (the window might appear black, transparent, or as a snapshot the
181
+ (the window might appear black, transparent, or as a snapshot of the
182
182
desktop under it). Conversely, if you configure the event loop
183
- integration displayed figures will be "live" while waiting for input
184
- at the prompt independent of pyplot's "interactive mode". In either
183
+ integration, displayed figures will be "live" while waiting for input
184
+ at the prompt, regardless of pyplot's "interactive mode". In either
185
185
case, the figures will be "live" if you use
186
186
``pyplot.show(block=True) ``, `.pyplot.pause `, or run the the GUI main
187
187
loop in some other way.
0 commit comments