summaryrefslogtreecommitdiff
path: root/src/model/content.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/content.rs')
-rw-r--r--src/model/content.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/content.rs b/src/model/content.rs
index 9d78020c..90df5a4e 100644
--- a/src/model/content.rs
+++ b/src/model/content.rs
@@ -362,7 +362,7 @@ pub trait Node: 'static + Capable {
///
/// This is passed only the arguments that remain after execution of the
/// node's set rule.
- fn construct(vm: &mut Vm, args: &mut Args) -> SourceResult<Content>
+ fn construct(vm: &Vm, args: &mut Args) -> SourceResult<Content>
where
Self: Sized;