Deal with the fallout of string stabilization
This commit is contained in:
parent
31be3319bf
commit
50375139e2
13 changed files with 88 additions and 74 deletions
|
@ -1080,7 +1080,8 @@ impl Context {
|
|||
let mut json_out = BufferedWriter::new(try!(File::create(json_dst)));
|
||||
try!(stability.encode(&mut json::Encoder::new(&mut json_out)));
|
||||
|
||||
let title = stability.name.clone().append(" - Stability dashboard");
|
||||
let mut title = stability.name.clone();
|
||||
title.push_str(" - Stability dashboard");
|
||||
let desc = format!("API stability overview for the Rust `{}` crate.",
|
||||
this.layout.krate);
|
||||
let page = layout::Page {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue