Skip to content

Commit b29aa94

Browse files
authored
Merge pull request #271 from dschrempf/fix-warning
fix warning about format string
2 parents 8b02dc6 + 6affc8d commit b29aa94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix-script-directives/src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ impl Parser {
3232
let value = line_without_indicator[key.len()..].trim_start();
3333

3434
if value.is_empty() {
35-
log::warn!("skipping directive \"{}\" because value was empty", key);
35+
log::warn!("skipping directive \"{key}\" because value was empty");
3636
continue;
3737
}
3838

0 commit comments

Comments
 (0)