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
@@ -182,7 +182,7 @@ impl Config {
182
182
.replace(|c| c == '-' || c == '_',"")
183
183
.to_lowercase();
184
184
if mentioned_target != target && mentioned_target_norm == target_norm {
185
-
msg_info.warn("a target named \"{mentioned_target}\" is mentioned in the Cross configuration, but the current specified target is \"{target}\".")?;
185
+
msg_info.warn(format_args!("a target named \"{mentioned_target}\" is mentioned in the Cross configuration, but the current specified target is \"{target}\"."))?;
186
186
msg_info.status(" > Is the target misspelled in the Cross configuration?")?;
0 commit comments