Skip to content

Commit

Permalink
task: fix documentation links (#6336)
Browse files Browse the repository at this point in the history
  • Loading branch information
progval authored Feb 11, 2024
1 parent e25d661 commit db6929a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion spellcheck.dic
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
279
283
&
+
<
Expand Down Expand Up @@ -59,6 +59,7 @@ combinators
config
Config
connectionless
coroutines
cpu
cpus
Customizable
Expand Down Expand Up @@ -92,6 +93,7 @@ enqueued
EntryInner
enum
eof
Erlang's
errored
EWMA
expirations
Expand All @@ -109,6 +111,7 @@ fs
functionalities
getters
GID
goroutines
Growable
gzip
hashmaps
Expand All @@ -132,6 +135,7 @@ IP
IPv4
IPv6
iteratively
Kotlin's
latencies
Lauck
libc
Expand Down
4 changes: 2 additions & 2 deletions tokio/src/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
//! A _task_ is a light weight, non-blocking unit of execution. A task is similar
//! to an OS thread, but rather than being managed by the OS scheduler, they are
//! managed by the [Tokio runtime][rt]. Another name for this general pattern is
//! [green threads]. If you are familiar with [`Go's goroutines`], [`Kotlin's
//! coroutines`], or [`Erlang's processes`], you can think of Tokio's tasks as
//! [green threads]. If you are familiar with [Go's goroutines], [Kotlin's
//! coroutines], or [Erlang's processes], you can think of Tokio's tasks as
//! something similar.
//!
//! Key points about tasks include:
Expand Down

0 comments on commit db6929a

Please sign in to comment.