Skip to content

Commit 5d2b102

Browse files
committed
Fix formatting
1 parent 32720ae commit 5d2b102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/docs/DebuggingCoroutines.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ type of a task is a template argument. For simplicity's sake, we hard-coded the
360360
``int`` type in this example.
361361

362362
Stack traces of in-flight coroutines
363-
-----------------------------------
363+
------------------------------------
364364

365365
Let's assume you have the following program and set a breakpoint inside the
366366
``write_output`` function. There are multiple call paths through which this
@@ -466,7 +466,7 @@ One such solution is to store the list of in-flight coroutines in a collection:
466466
};
467467
468468
With this in place, it is possible to inspect ``inflight_coroutines`` from the
469-
debugger, and rely on LLDB's pretty-printer for ``std::coroutine_handle``s to
469+
debugger, and rely on LLDB's pretty-printer for ``std::coroutine_handle`` to
470470
inspect the coroutines.
471471

472472
This technique will track *all* coroutines, also the ones which are currently

0 commit comments

Comments
 (0)