Skip to content

Commit 65769cf

Browse files
committed
fix: simplify debug string formatting in ReplicateStatusCause
1 parent d8048ca commit 65769cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

post-compute/src/compute/errors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub enum ReplicateStatusCause {
4242

4343
impl ReplicateStatusCause {
4444
fn to_screaming_snake_case(&self) -> String {
45-
let debug_str = format!("{:?}", self);
45+
let debug_str = format!("{self:?}");
4646
let mut result = String::new();
4747
let mut prev_was_lowercase = false;
4848

0 commit comments

Comments
 (0)