mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-23 17:31:08 +00:00
[Bind] More aggressive trimming of documentation strings
This commit is contained in:
parent
570d08fff1
commit
e11b7ca993
|
@ -120,7 +120,8 @@ namespace Bind
|
||||||
String.Join(" ", text
|
String.Join(" ", text
|
||||||
.Replace("\r", "\n")
|
.Replace("\r", "\n")
|
||||||
.Split(newline, StringSplitOptions.RemoveEmptyEntries)
|
.Split(newline, StringSplitOptions.RemoveEmptyEntries)
|
||||||
.Select(s => s.Trim()).ToArray());
|
.Select(s => s.Trim()).ToArray())
|
||||||
|
.Trim();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue