From 0dfaa414af400fbb49cacbae8e87ff81cf5951df Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Sun, 23 Jul 2017 23:04:03 +0100 Subject: [PATCH] Remove trailing space from bindings --- src/Generator.Bind/CSharpSpecWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.Bind/CSharpSpecWriter.cs b/src/Generator.Bind/CSharpSpecWriter.cs index 1f10fbd0..3b7a967b 100644 --- a/src/Generator.Bind/CSharpSpecWriter.cs +++ b/src/Generator.Bind/CSharpSpecWriter.cs @@ -380,7 +380,7 @@ namespace Bind } if (!String.IsNullOrEmpty(docparam.Documentation)) { - sw.WriteLine(WriteOptions.NoIndent, " "); + sw.WriteLine(WriteOptions.NoIndent, ""); sw.WriteLine("/// {0}", docparam.Documentation); sw.WriteLine("/// "); }