From 7660978ee5d842648e244e2972273264d94ca37b Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 12 Jun 2022 17:45:52 +0200 Subject: Move `Arc` into `Frame` --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index f9416463..25a41c35 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -72,7 +72,7 @@ use crate::source::{SourceId, SourceStore}; /// Returns either a vector of frames representing individual pages or /// diagnostics in the form of a vector of error message with file and span /// information. -pub fn typeset(ctx: &mut Context, id: SourceId) -> TypResult>> { +pub fn typeset(ctx: &mut Context, id: SourceId) -> TypResult> { let module = eval::evaluate(ctx, id, vec![])?; model::layout(ctx, &module.content) } -- cgit v1.2.3