summaryrefslogtreecommitdiff
path: root/src/func
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-01-09 18:44:29 +0100
committerLaurenz <laurmaedje@gmail.com>2020-01-09 18:44:29 +0100
commit5dbc7dc5aaaea794b140c5ea7839d681110d7b79 (patch)
tree116fd84af3f7d9fd82050d9383ff3f9996b8d47d /src/func
parentbc22d1fbc14c918bea8cc49ce71ab9b8921c02fe (diff)
Introduce color tokens 🎨
Diffstat (limited to 'src/func')
-rw-r--r--src/func/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/func/mod.rs b/src/func/mod.rs
index 31f03c55..aca612aa 100644
--- a/src/func/mod.rs
+++ b/src/func/mod.rs
@@ -25,7 +25,6 @@ pub mod prelude {
pub use Command::*;
}
-
/// Types representing functions that are parsed from source code.
pub trait ParseFunc {
type Meta: Clone;
@@ -39,7 +38,7 @@ pub trait ParseFunc {
) -> ParseResult<Self> where Self: Sized;
}
-/// Types representing functions which can be laid out in a layout context.
+/// Function types which can be laid out in a layout context.
///
/// This trait is a supertrait of `[LayoutFuncBounds]` for technical reasons.
/// The trait `[LayoutFuncBounds]` is automatically implemented for types which