diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-21 16:49:26 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-21 17:11:40 +0100 |
| commit | c28d2130ddda3ae9b25cc16c3015087990ccb6e9 (patch) | |
| tree | 71954529366fd10bbaa42b945eccd9cacba5964f /library/src/structure | |
| parent | 1d7e082d1d83d4c7e454a2d08258794d716aea1a (diff) | |
Don't display functions
Diffstat (limited to 'library/src/structure')
| -rw-r--r-- | library/src/structure/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/structure/list.rs b/library/src/structure/list.rs index 3f73386c..2a3f3035 100644 --- a/library/src/structure/list.rs +++ b/library/src/structure/list.rs @@ -252,7 +252,7 @@ impl Label { Self::Content(content) => content.clone(), Self::Func(func, span) => { let args = Args::new(*span, [Value::Int(number as i64)]); - func.call_detached(world, args)?.display(world) + func.call_detached(world, args)?.display() } }) } |
