build: bump typst to 0.11.0-rc1

This commit is contained in:
Myriad-Dreamin 2024-03-10 03:45:13 +08:00
parent 2a60c1caf9
commit 49244fe8df
11 changed files with 84 additions and 65 deletions

View file

@ -24,7 +24,7 @@ impl SignatureHelpRequest {
let values = analyze_expr(world, &callee_node);
let function = values.into_iter().find_map(|v| match v {
let function = values.into_iter().find_map(|v| match v.0 {
Value::Func(f) => Some(f),
_ => None,
})?;