summaryrefslogtreecommitdiff
path: root/library/src/math/attach.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-03-10 12:55:21 +0100
committerLaurenz <laurmaedje@gmail.com>2023-03-10 12:55:21 +0100
commit62f35602a87574dcc607f1637aeae1be574981ff (patch)
tree363a1918006e06d7d79dc2ace5f8e59cd3b6bb19 /library/src/math/attach.rs
parentc38d72383d2068361d635d6c1c78ba97aa917801 (diff)
New #[func] macro
Diffstat (limited to 'library/src/math/attach.rs')
-rw-r--r--library/src/math/attach.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/src/math/attach.rs b/library/src/math/attach.rs
index c2d7703d..7d8749f2 100644
--- a/library/src/math/attach.rs
+++ b/library/src/math/attach.rs
@@ -16,7 +16,6 @@ use super::*;
#[node(LayoutMath)]
pub struct AttachNode {
/// The base to which things are attached.
- #[positional]
#[required]
pub base: Content,
@@ -79,7 +78,6 @@ impl LayoutMath for AttachNode {
#[node(LayoutMath)]
pub struct ScriptsNode {
/// The base to attach the scripts to.
- #[positional]
#[required]
pub body: Content,
}
@@ -102,7 +100,6 @@ impl LayoutMath for ScriptsNode {
#[node(LayoutMath)]
pub struct LimitsNode {
/// The base to attach the limits to.
- #[positional]
#[required]
pub body: Content,
}