Skip to content

Commit 630709a

Browse files
authored
More fixes to the docs. (#149)
1 parent 053e907 commit 630709a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/start.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Async
127127
-----
128128

129129
A render canvas can be used in a fully async setting using e.g. Asyncio or Trio, or in an event-drived framework like Qt.
130-
If you like callbacks, ``loop.call_later()`` always works. If you like async, use ``loop.add_task()``. Event handlers can always be async.
130+
If you like callbacks, ``loop.call_later()`` always works. If you like async, use ``loop.add_task()``.
131131

132132
If you make use of async functions (co-routines), and want to keep your code portable across
133133
different canvas backends, restrict your use of async features to ``sleep`` and ``Event``;

from_wgpu_canvas.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ This document lists all the changes w.r.t. the last version of the canvas in wgp
2121
* Bitmap rendering via builtin`canvas.get_bitmap_context()`.
2222
* Handling of sigint (ctrl+c).
2323
* Support for Trio.
24-
* Support for async event handlers.
2524
* Support for running async functions via `loop.add_task()`.
2625
* Simpler Qt lib selection with `from rendercanvas.pyside6 import RenderCanvas`.
27-
* Generic scheduling system with modes "ondemand", "continious", "fastest".
26+
* Generic scheduling system with modes "ondemand", "continuous", "fastest".
2827

2928

3029
## By example

0 commit comments

Comments
 (0)