diff options
Diffstat (limited to 'tvix/eval/src/value/builtin.rs')
-rw-r--r-- | tvix/eval/src/value/builtin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/value/builtin.rs b/tvix/eval/src/value/builtin.rs index 84582e298586..e876c235557e 100644 --- a/tvix/eval/src/value/builtin.rs +++ b/tvix/eval/src/value/builtin.rs @@ -58,7 +58,7 @@ impl Builtin { } // Function is not yet ready to be called. - return Ok(Value::Builtin(self)); + Ok(Value::Builtin(self)) } } |