From e11b7ca993336e9f00d810c254d45efbc62bd4f6 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 31 Mar 2014 09:51:15 +0200 Subject: [PATCH] [Bind] More aggressive trimming of documentation strings --- Source/Bind/DocProcessor.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Bind/DocProcessor.cs b/Source/Bind/DocProcessor.cs index d36c9142..57350ded 100644 --- a/Source/Bind/DocProcessor.cs +++ b/Source/Bind/DocProcessor.cs @@ -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(); } } }