Skip to content

Commit 01b7d63

Browse files
committed
Remove unneeded to_string call
1 parent a325df5 commit 01b7d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/verify.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ fn prompt_for_completion(
224224
let formatted_line = if context_line.important {
225225
format!("{}", style(context_line.line).bold())
226226
} else {
227-
context_line.line.to_string()
227+
context_line.line
228228
};
229229

230230
println!(

0 commit comments

Comments
 (0)