summaryrefslogtreecommitdiff
path: root/src/eval/library.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-04-26 13:46:42 +0200
committerLaurenz <laurmaedje@gmail.com>2023-04-26 15:37:21 +0200
commit3680c854a21db665d64cdb8f31aa0f9a1af16ceb (patch)
tree39dfa33059293251f1e2890f9b3d0e3dc178ed03 /src/eval/library.rs
parent59957746e91c1322a8ca6d228bcaa0f31941ee1b (diff)
Touch up docs
Diffstat (limited to 'src/eval/library.rs')
-rw-r--r--src/eval/library.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/eval/library.rs b/src/eval/library.rs
index a92d8bd1..13825d7e 100644
--- a/src/eval/library.rs
+++ b/src/eval/library.rs
@@ -91,13 +91,13 @@ pub struct LangItems {
pub math_attach: fn(
base: Content,
// Positioned smartly.
- top: Option<Content>,
- bottom: Option<Content>,
+ t: Option<Content>,
+ b: Option<Content>,
// Fixed positions.
- topleft: Option<Content>,
- bottomleft: Option<Content>,
- topright: Option<Content>,
- bottomright: Option<Content>,
+ tl: Option<Content>,
+ bl: Option<Content>,
+ tr: Option<Content>,
+ br: Option<Content>,
) -> Content,
/// A base with an accent: `arrow(x)`.
pub math_accent: fn(base: Content, accent: char) -> Content,