summaryrefslogtreecommitdiff
path: root/library/src/math
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/math')
-rw-r--r--library/src/math/root.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/math/root.rs b/library/src/math/root.rs
index 8b272160..7e00c45a 100644
--- a/library/src/math/root.rs
+++ b/library/src/math/root.rs
@@ -31,11 +31,11 @@ pub fn sqrt(
pub struct RootElem {
/// Which root of the radicand to take.
#[positional]
- index: Option<Content>,
+ pub index: Option<Content>,
/// The expression to take the root of.
#[required]
- radicand: Content,
+ pub radicand: Content,
}
impl LayoutMath for RootElem {