Merge pull request #9060 from jtattermusch/csharp_protoc_leading_space

Remove leading space in C# service comments
pull/8764/head
Jan Tattermusch 8 years ago committed by GitHub
commit 83ed007c9e
  1. 2
      src/compiler/csharp_generator.cc

@ -107,7 +107,7 @@ void GenerateDocCommentBodyImpl(grpc::protobuf::io::Printer *printer,
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