Merge pull request #2487 from jtattermusch/csharp_leading_whitespace

remove leading whitespace in C# xml comments
pull/2495/head
Jan Tattermusch 8 years ago committed by GitHub
commit 9d709f446f
  1. 2
      src/google/protobuf/compiler/csharp/csharp_doc_comment.cc

@ -74,7 +74,7 @@ void WriteDocCommentBodyImpl(io::Printer* printer, SourceLocation location) {
printer->Print("///\n"); printer->Print("///\n");
} }
last_was_empty = false; last_was_empty = false;
printer->Print("/// $line$\n", "line", *it); printer->Print("///$line$\n", "line", *it);
} }
} }
printer->Print("/// </summary>\n"); printer->Print("/// </summary>\n");

Loading…
Cancel
Save