Fix style warning, “line longer than 100 chars”
Error was noted at 60643081 (L371)
I didn’t just put the content of the node on another line, because that would add spaces around the element content, messing up the JavaScript that checks what the content is.
This commit is contained in:
parent
fc9bddd105
commit
6ce05ae6bb
1 changed files with 2 additions and 1 deletions
|
@ -1460,7 +1460,8 @@ impl<'a> fmt::Display for Item<'a> {
|
|||
try!(write!(fmt, "<span class='out-of-band'>"));
|
||||
try!(write!(fmt,
|
||||
r##"<span id='render-detail'>
|
||||
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[−]</a>
|
||||
<a id="toggle-all-docs" href="javascript:void(0)"
|
||||
title="collapse all docs">[−]</a>
|
||||
</span>"##));
|
||||
|
||||
// Write `src` tag
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue