remove references to m.module

This commit is contained in:
Leo Horie 2015-04-22 21:18:41 -04:00
parent ab1e91a221
commit 5a786009c5
3 changed files with 3 additions and 3 deletions

View file

@ -72,7 +72,7 @@ That organization pattern needlessly ties unrelated aspects of the application t
`m.redraw` is a method that allows you to render a template outside the scope of Mithril's auto-redrawing system.
Calling this method while using `m.module` or `m.route` should only be done if you have recurring asynchronous view updates (i.e. something that uses setInterval).
Calling this method while using `m.mount` or `m.route` should only be done if you have recurring asynchronous view updates (i.e. something that uses setInterval).
If you're integrating other non-recurring services (e.g. calling setTimeout), you should use [`m.startComputation` / `m.endComputation`](mithril.computation.md) instead.