summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-10-03 18:15:09 +0200
committerLaurenz <laurmaedje@gmail.com>2020-10-03 18:15:09 +0200
commit54e0da59e37c25f5b9f9cd8fbe162184debe521b (patch)
tree699cdb8e05dd2867a185bd2f662764f107efecb0 /src/lib.rs
parent91d14d2a221f619738e4534c1b4266633ce5789d (diff)
Small documentation fixes 🧾
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3be97873..c47f7f51 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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.