Skip to content

Commit 719743e

Browse files
committed
feat: v3.9.7
1 parent 8d7dcb6 commit 719743e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "recoverable-spawn"
3-
version = "3.9.6"
3+
version = "3.9.7"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

src/thread/sync/fn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub fn spawn_error_to_string(err: &SpawnError) -> String {
4747
Some(str_slice) => str_slice.to_string(),
4848
None => match err.downcast_ref::<String>() {
4949
Some(string) => string.to_owned(),
50-
None => format!("{:?}", err),
50+
None => format!("{err:?}"),
5151
},
5252
}
5353
}

0 commit comments

Comments
 (0)