Browse Source

doc: cleanup

Michele Caini 8 months ago
parent
commit
e140399725
1 changed files with 0 additions and 8 deletions
  1. 0 8
      src/entt/process/scheduler.hpp

+ 0 - 8
src/entt/process/scheduler.hpp

@@ -24,14 +24,6 @@ namespace entt {
  * its child when it terminates if it returns with success. In case of errors,
  * both the process and its child are discarded.
  *
- * Example of use (pseudocode):
- *
- * @code{.cpp}
- * scheduler.attach([](auto delta, void *, auto succeed, auto fail) {
- *     // code
- * }).then<my_process>(arguments...);
- * @endcode
- *
  * In order to invoke all scheduled processes, call the `update` member function
  * passing it the elapsed time to forward to the tasks.
  *