Skip to content

Commit 3a765d0

Browse files
author
sam.gerene
committed
[Remove] leading and trailing spaces from doc lines
1 parent bde2520 commit 3a765d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

SysML2.NET.CodeGenerator/Extensions/EcoreExtensions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
// </copyright>
1919
// ------------------------------------------------------------------------------------------------
2020

21-
using HandlebarsDotNet.Features;
22-
2321
namespace SysML2.NET.CodeGenerator.Extensions
2422
{
2523
using System.Collections.Generic;
@@ -352,7 +350,7 @@ public static IEnumerable<string> SplitToLines(this string input, int maximumLin
352350
}
353351
}
354352

355-
yield return line;
353+
yield return line.Trim();
356354
}
357355
}
358356
}

0 commit comments

Comments
 (0)