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/prelude.rs | |
| parent | 91d14d2a221f619738e4534c1b4266633ce5789d (diff) | |
Small documentation fixes 🧾
Diffstat (limited to 'src/prelude.rs')
| -rw-r--r-- | src/prelude.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/prelude.rs b/src/prelude.rs index 0fab6fbb..899ced7d 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -1,9 +1,11 @@ //! A prelude for building custom functions. +#[doc(no_inline)] pub use crate::eval::{Dict, DictValue, Value}; pub use crate::layout::primitive::*; +#[doc(no_inline)] pub use crate::layout::{layout, Command, Commands, LayoutContext}; -pub use crate::style::*; +#[doc(no_inline)] pub use crate::syntax::{Span, Spanned, SynTree}; pub use crate::{Feedback, Pass}; |
