Skip to content

Commit de96a5d

Browse files
committed
doc(core): inline format args
This instance was missed by Clippy due to being in a doc comment.
1 parent 9843900 commit de96a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/r3_core/src/kernel/mutex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ define_object! {
6767
/// Err(LockMutexError::Abandoned) => {
6868
/// app.mutex.mark_consistent().unwrap();
6969
/// }
70-
/// Err(e) => panic!("failed to lock the mutex: {:?}", e),
70+
/// Err(e) => panic!("failed to lock the mutex: {e:?}"),
7171
/// }
7272
/// app.mutex.unlock().unwrap();
7373
/// }

0 commit comments

Comments
 (0)