@@ -43,20 +43,20 @@ namespace espp {
43
43
// /
44
44
// / The RunQueue is thread-safe and can be used from multiple threads.
45
45
// /
46
- // / \warn Care should be taken to ensure that no functions in the queue are
47
- // / blocking on each other, and all functions in the queue must return
48
- // / (they cannot be infinite loops).
46
+ // / \warning Care should be taken to ensure that no functions in the queue are
47
+ // / blocking on each other, and all functions in the queue must return
48
+ // / (they cannot be infinite loops).
49
49
// /
50
- // / \warn Functions take a long time to run may delay or prevent the execution
51
- // / of other functions in the queue. For this reason it's recommended to
52
- // / try to keep the functions as short-lived as possible, and to
53
- // / minimize the priorities of any functions which take longer to
54
- // / execute.
50
+ // / \warning Functions take a long time to run may delay or prevent the
51
+ // / execution of other functions in the queue. For this reason it's
52
+ // / recommended to try to keep the functions as short-lived as
53
+ // / possible, and to minimize the priorities of any functions which
54
+ // / take longer to execute.
55
55
// /
56
56
// / \section runq_ex0 RunQueue Example
57
57
// / \snippet runqueue_example.cpp runqueue example
58
58
// / \section runq_ex1 Multiple RunQueues Example
59
- // / \snippet runqueue_example.cpp multiple runqueues example
59
+ // / \snippet runqueue_example.cpp multiple runqueue example
60
60
class RunQueue : public espp ::BaseComponent {
61
61
public:
62
62
// / The type used to represent the priority of a function.
0 commit comments