Skip to content

Commit 1608188

Browse files
committed
chore: Fix a typo.
1 parent b542dac commit 1608188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exception.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl JSException {
2424
impl fmt::Display for JSException {
2525
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
2626
match self.underlying_value().as_string() {
27-
Ok(string) => write!(formatter, "JSException (interted as string): {}", string),
27+
Ok(string) => write!(formatter, "JSException (interpreted as string): {}", string),
2828
Err(_) => write!(formatter, "{:?}", self),
2929
}
3030
}

0 commit comments

Comments
 (0)