Skip to content

Commit 417123a

Browse files
committed
Fix docs
1 parent e4f3f2b commit 417123a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/vm/src/errors/backtrace.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
use core::fmt::{Debug, Display, Formatter, Result};
22
use std::backtrace::Backtrace;
33

4-
/// This wraps an actual backtrace to achieve two things:
5-
/// - being able to fill this with a stub implementation in `no_std` environments
6-
/// - being able to use this in conjunction with [`thiserror::Error`]
4+
/// This wraps an actual backtrace to allow us to use this in conjunction with [`thiserror::Error`]
75
pub struct BT(Box<Backtrace>);
86

97
impl BT {

0 commit comments

Comments
 (0)