Skip to content

Conversation

@taiki-e
Copy link
Collaborator

@taiki-e taiki-e commented Jul 19, 2025

No description provided.

taiki-e added 4 commits July 20, 2025 00:31
```
error: variables can be used directly in the `format!` string
  --> examples/print.rs:29:17
   |
29 |                 eprintln!("Received signal {:?}", signal);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
   = note: `-D clippy::uninlined-format-args` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
   |
29 -                 eprintln!("Received signal {:?}", signal);
29 +                 eprintln!("Received signal {signal:?}");
   |
```
@taiki-e taiki-e merged commit 7c1caf9 into master Jul 19, 2025
14 checks passed
@taiki-e taiki-e deleted the taiki-e/ci branch July 19, 2025 15:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants