doc: updated section for on_update/on_replace (close #452)

This commit is contained in:
Michele Caini
2020-03-25 15:11:14 +01:00
parent 1c8f5b98f1
commit 9e8f2c52a0

View File

@@ -1138,10 +1138,10 @@ public:
* The function type for a listener is equivalent to:
*
* @code{.cpp}
* void(registry<Entity> &, Entity, Component &);
* void(registry<Entity> &, Entity);
* @endcode
*
* Listeners are invoked **before** the component has been updated.
* Listeners are invoked **after** the component has been updated.
*
* @sa sink
*