Windows line endings
This commit is contained in:
parent
abc0530279
commit
fbb1612846
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ pub fn run(mut krate: clean::Crate,
|
|||
// A short, single-line view of `s`.
|
||||
fn concise_str(s: &str) -> String {
|
||||
if s.contains('\n') {
|
||||
return format!("{}...", &s[..s.find('\n').unwrap()]);
|
||||
return format!("{}...", s.lines().next().expect("Impossible! We just found a newline"));
|
||||
}
|
||||
if s.len() > 70 {
|
||||
return format!("{} ... {}", &s[..50], &s[s.len()-20..]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue