Skip to content

Commit ebe651d

Browse files
authored
doc: fix (#399)
1 parent a3bea08 commit ebe651d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

components/runqueue/include/runqueue.hpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ namespace espp {
4343
///
4444
/// The RunQueue is thread-safe and can be used from multiple threads.
4545
///
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).
4949
///
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.
5555
///
5656
/// \section runq_ex0 RunQueue Example
5757
/// \snippet runqueue_example.cpp runqueue example
5858
/// \section runq_ex1 Multiple RunQueues Example
59-
/// \snippet runqueue_example.cpp multiple runqueues example
59+
/// \snippet runqueue_example.cpp multiple runqueue example
6060
class RunQueue : public espp::BaseComponent {
6161
public:
6262
/// The type used to represent the priority of a function.

0 commit comments

Comments
 (0)