Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
coderabbit suggestion
  • Loading branch information
ShaharNaveh committed Jun 11, 2026
commit 18ba4842e9cc28daecf4422cc77d087da5d64aae
2 changes: 1 addition & 1 deletion crates/vm/src/stdlib/_signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ pub(crate) mod _signal {
.ok_or_else(|| {
vm.new_value_error(format!(
"signal number out of range [1, {}]",
SIGNUM_RANGE.end
SIGNUM_RANGE.end - 1
))
Comment thread
ShaharNaveh marked this conversation as resolved.
})?;

Expand Down
Loading