File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 3030
3131
3232Dispatcher
33- --------
33+ ----------
3434
35- .. automodule :: idom.core.render
35+ .. automodule :: idom.core.dispatcher
3636 :members:
3737
3838
Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ callback that's called by the dispatcher to events it should execute.
163163
164164 ``context `` is information that's specific to the
165165 :class: `~idom.core.dispatcher.AbstractDispatcher ` implementation. In the case of
166- the :class: `~idom.core.render .SingleStateDispatcher ` it doesn't require any
167- context. On the other hand the :class: `~idom.core.render .SharedStateDispatcher `
166+ the :class: `~idom.core.dispatcher .SingleStateDispatcher ` it doesn't require any
167+ context. On the other hand the :class: `~idom.core.dispatcher .SharedStateDispatcher `
168168 requires a client ID as its piece of contextual information.
169169
170170
@@ -201,8 +201,8 @@ two ways - as a standalone application or as an extension to an existing applica
201201Standalone Server Usage
202202.......................
203203
204- The implementation constructs a default application that's used to serve the renders of
205- the model :
204+ The implementation constructs a default application that's used to serve the dispatched
205+ models :
206206
207207.. code-block :: python
208208
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ async def recv():
9999 await dispatcher .run (send , recv , None )
100100
101101
102- async def test_dispatcher_run_does_not_supress_non_stop_rendering_errors ():
102+ async def test_dispatcher_run_does_not_supress_errors ():
103103 class DispatcherWithBug (AbstractDispatcher ):
104104 async def _outgoing (self , layout , context ):
105105 raise ValueError ("this is a bug" )
You can’t perform that action at this time.
0 commit comments