summaryrefslogtreecommitdiff
path: root/library/src/structure/reference.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/structure/reference.rs')
-rw-r--r--library/src/structure/reference.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/structure/reference.rs b/library/src/structure/reference.rs
index 4f672707..361f8c25 100644
--- a/library/src/structure/reference.rs
+++ b/library/src/structure/reference.rs
@@ -7,7 +7,7 @@ pub struct RefNode(pub EcoString);
#[node(Show)]
impl RefNode {
- fn construct(_: &mut Vm, args: &mut Args) -> SourceResult<Content> {
+ fn construct(_: &Vm, args: &mut Args) -> SourceResult<Content> {
Ok(Self(args.expect("target")?).pack())
}