summaryrefslogtreecommitdiff
path: root/library/src
diff options
context:
space:
mode:
Diffstat (limited to 'library/src')
-rw-r--r--library/src/compute/foundations.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/compute/foundations.rs b/library/src/compute/foundations.rs
index 4e8b9d82..162ba8c4 100644
--- a/library/src/compute/foundations.rs
+++ b/library/src/compute/foundations.rs
@@ -113,5 +113,5 @@ pub fn eval(vm: &Vm, args: &mut Args) -> SourceResult<Value> {
let source = Source::synthesized(text, span);
let route = model::Route::default();
let module = model::eval(vm.world(), route.track(), &source)?;
- Ok(Value::Content(module.content))
+ Ok(Value::Content(module.content()))
}