We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b542dac commit 1608188Copy full SHA for 1608188
src/exception.rs
@@ -24,7 +24,7 @@ impl JSException {
24
impl fmt::Display for JSException {
25
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
26
match self.underlying_value().as_string() {
27
- Ok(string) => write!(formatter, "JSException (interted as string): {}", string),
+ Ok(string) => write!(formatter, "JSException (interpreted as string): {}", string),
28
Err(_) => write!(formatter, "{:?}", self),
29
}
30
0 commit comments