aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-07 15:10:23 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-07 15:10:23 -0700
commitcd7e3137da7e3304e86063bcc680eedea57e761c (patch)
tree26e9f86b543cf02e0c1d01368a435a8e4b3c795e /src/compiler
parenteb5a312a9b98b71bfa7438d96860c1c0f7a378da (diff)
add newline to the end of generated files
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/csharp_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc
index cc8f5bda71..b139c06014 100644
--- a/src/compiler/csharp_generator.cc
+++ b/src/compiler/csharp_generator.cc
@@ -489,7 +489,7 @@ grpc::string GetServices(const FileDescriptor *file) {
}
out.Outdent();
out.Print("}\n");
- out.Print("#endregion");
+ out.Print("#endregion\n");
return output;
}