Closed
Description
For the service interface a comment is added to the generated interface, as seen on #3794
// GreeterServer is the server API for Greeter service.
// All implementations must embed UnimplementedGreeterServer
// for forward compatibility
This appended comment violates godoc as it does not end with punctuation (dot).
Expected:
// GreeterServer is the server API for Greeter service.
// All implementations must embed UnimplementedGreeterServer
// for forward compatibility.
Is there a way we can:
- turn off this comment (flags?),
- modify this comment on our own (flags?),
- just get the dot added in a future release?
Thank you for understanding :D