diff options
Diffstat (limited to 'tvix/eval/src/errors.rs')
-rw-r--r-- | tvix/eval/src/errors.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs index 23ac6abbf4de..d3d41cbbcd48 100644 --- a/tvix/eval/src/errors.rs +++ b/tvix/eval/src/errors.rs @@ -26,9 +26,9 @@ pub enum ErrorKind { name: String, }, - // Attempted to index into a list beyond its boundaries. + /// Attempted to index into a list beyond its boundaries. IndexOutOfBounds { - index: usize, + index: i64, }, TypeError { |