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
Fix bad panic message
  • Loading branch information
tomaka committed Jan 15, 2018
commit d6028cd5de4722fbe49a1c82e4b840df49f035fc
2 changes: 1 addition & 1 deletion varint-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ impl<T> Decoder for VarintCodec<T> {
}
},
VarintCodecInner::Poisonned => {
panic!("Poisonned decoder")
panic!("varint codec was poisoned")
},
}
}
Expand Down