1
Fork 0

Don't format!() string literals

This commit is contained in:
ljedrz 2018-07-28 14:40:32 +02:00
parent 4f1e235744
commit 421b2ba347
42 changed files with 168 additions and 172 deletions

View file

@ -2566,7 +2566,7 @@ fn short_stability(item: &clean::Item, cx: &Context, show_reason: bool) -> Vec<S
text));
}
} else {
stability.push(format!("<div class='stab unstable'>Experimental</div>"))
stability.push("<div class='stab unstable'>Experimental</div>".to_string())
}
};
} else if let Some(depr) = item.deprecation.as_ref() {