[Bind] More aggressive trimming of documentation strings
This commit is contained in:
parent
570d08fff1
commit
e11b7ca993
1 changed files with 2 additions and 1 deletions
|
@ -120,7 +120,8 @@ namespace Bind
|
|||
String.Join(" ", text
|
||||
.Replace("\r", "\n")
|
||||
.Split(newline, StringSplitOptions.RemoveEmptyEntries)
|
||||
.Select(s => s.Trim()).ToArray());
|
||||
.Select(s => s.Trim()).ToArray())
|
||||
.Trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue