Update docs

* improve linking
* parallel construction for storage and servers
* clarify rationale for Task/TaskMut
This commit is contained in:
Dustin J. Mitchell
2021-09-26 13:59:04 -04:00
parent 7881b2993c
commit 255cf29d4f
5 changed files with 38 additions and 10 deletions

View File

@@ -16,7 +16,10 @@ use uuid::Uuid;
/// ## Tasks
///
/// Tasks are uniquely identified by UUIDs.
/// Most task modifications are performed via the [`crate::Task`] and [`crate::TaskMut`] types.
/// Most task modifications are performed via the [`Task`](crate::Task) and
/// [`TaskMut`](crate::TaskMut) types. Use of two types for tasks allows easy
/// read-only manipulation of lots of tasks, with exclusive access required only
/// for modifications.
///
/// ## Working Set
///