Skip to content

Commit 8234c21

Browse files
PaxxiRon Petrusha
authored andcommitted
Fix missing <T> in sub header. (#6468)
1 parent d7c1ab1 commit 8234c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/async-in-depth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ More importantly, because I/O-bound work spends virtually no time on the CPU, de
108108

109109
Additionally, dispatching work to the UI thread (such as updating a UI) is very simple with `async` methods, and does not require extra work (such as calling a thread-safe delegate).
110110

111-
## Deeper Dive into Task and Task<T> for a CPU-Bound Operation
111+
## Deeper Dive into Task and Task&lt;T&gt; for a CPU-Bound Operation
112112

113113
CPU-bound `async` code is a bit different than I/O-bound `async` code. Because the work is done on the CPU, there's no way to get around dedicating a thread to the computation. The use of `async` and `await` provides you with a clean way to interact with a background thread and keep the caller of the async method responsive. Note that this does not provide any protection for shared data. If you are using shared data, you will still need to apply an appropriate synchronization strategy.
114114

0 commit comments

Comments
 (0)