aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-12-13 13:42:23 +0100
committerGravatar GitHub <noreply@github.com>2016-12-13 13:42:23 +0100
commit9d709f446f18b672edff81ee2d3f9d6516465d8c (patch)
tree35aa48bd0c17ba6611e9756b55cb819f861dbe70 /src
parenteb455ce1c92e9fc217ece0cfc58f9a698fd0f635 (diff)
parentfda9049eadc9cede812fbe0a43293450f9d10833 (diff)
Merge pull request #2487 from jtattermusch/csharp_leading_whitespace
remove leading whitespace in C# xml comments
Diffstat (limited to 'src')
-rw-r--r--src/google/protobuf/compiler/csharp/csharp_doc_comment.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc b/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc
index 587e0222..636a76a0 100644
--- a/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc
+++ b/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc
@@ -74,7 +74,7 @@ void WriteDocCommentBodyImpl(io::Printer* printer, SourceLocation location) {
printer->Print("///\n");
}
last_was_empty = false;
- printer->Print("/// $line$\n", "line", *it);
+ printer->Print("///$line$\n", "line", *it);
}
}
printer->Print("/// </summary>\n");