diff options
Diffstat (limited to 'library/src/math/root.rs')
| -rw-r--r-- | library/src/math/root.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/library/src/math/root.rs b/library/src/math/root.rs index 05f3a2a7..d1c5f46a 100644 --- a/library/src/math/root.rs +++ b/library/src/math/root.rs @@ -9,13 +9,12 @@ use super::*; /// /// Display: Square Root /// Category: math -/// Returns: content #[func] pub fn sqrt( /// The expression to take the square root of. radicand: Content, -) -> Value { - RootElem::new(radicand).pack().into() +) -> Content { + RootElem::new(radicand).pack() } /// A general root. |
