You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -222,7 +222,7 @@ impl Config {
222
222
.replace(|c| c == '-' || c == '_',"")
223
223
.to_lowercase();
224
224
if mentioned_target != target && mentioned_target_norm == target_norm {
225
-
msg_info.warn("a target named \"{mentioned_target}\" is mentioned in the Cross configuration, but the current specified target is \"{target}\".")?;
225
+
msg_info.warn(format_args!("a target named \"{mentioned_target}\" is mentioned in the Cross configuration, but the current specified target is \"{target}\"."))?;
226
226
msg_info.status(" > Is the target misspelled in the Cross configuration?")?;
0 commit comments