[Bind] More aggressive trimming of documentation strings

This commit is contained in:
thefiddler 2014-03-31 09:51:15 +02:00
parent 570d08fff1
commit e11b7ca993

View file

@ -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();
}
}
}