diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-03 18:15:09 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-03 18:15:09 +0200 |
| commit | 54e0da59e37c25f5b9f9cd8fbe162184debe521b (patch) | |
| tree | 699cdb8e05dd2867a185bd2f662764f107efecb0 /src/lib.rs | |
| parent | 91d14d2a221f619738e4534c1b4266633ce5789d (diff) | |
Small documentation fixes 🧾
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -22,8 +22,6 @@ //! [`MultiLayout`]: layout/type.MultiLayout.html #[macro_use] -mod macros; -#[macro_use] pub mod diagnostic; pub mod color; @@ -122,8 +120,7 @@ impl Typesetter { } /// A dynamic future type which allows recursive invocation of async functions -/// when used as the return type. This is also how the async trait functions -/// work internally. +/// when used as the return type. pub type DynFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>; /// The result of some pass: Some output `T` and feedback data. |
