Merge pull request #1375 from dtolnay/playground

Fix stray spacing after #playground code
This commit is contained in:
Eric Huss 2020-11-10 14:06:09 -08:00 committed by GitHub
commit 58f66a146d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -335,7 +335,7 @@ impl<'a> Link<'a> {
LinkType::Playground(ref pat, ref attrs) => { LinkType::Playground(ref pat, ref attrs) => {
let target = base.join(pat); let target = base.join(pat);
let contents = fs::read_to_string(&target).with_context(|| { let mut contents = fs::read_to_string(&target).with_context(|| {
format!( format!(
"Could not read file for link {} ({})", "Could not read file for link {} ({})",
self.link_text, self.link_text,
@ -343,8 +343,11 @@ impl<'a> Link<'a> {
) )
})?; })?;
let ftype = if !attrs.is_empty() { "rust," } else { "rust" }; let ftype = if !attrs.is_empty() { "rust," } else { "rust" };
if !contents.ends_with('\n') {
contents.push('\n');
}
Ok(format!( Ok(format!(
"```{}{}\n{}\n```\n", "```{}{}\n{}```\n",
ftype, ftype,
attrs.join(","), attrs.join(","),
contents contents