Correct small grammar error in comment.

This commit is contained in:
Ade Oshineye 2015-03-03 00:11:50 +00:00
parent 192144eaf9
commit 9b5575daa1
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ public class HelloWorldServer {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
// Use stderr here since the logger may has been reset by its JVM shutdown hook.
// Use stderr here since the logger may have been reset by its JVM shutdown hook.
System.err.println("*** shutting down gRPC server since JVM is shutting down");
HelloWorldServer.this.stop();
System.err.println("*** server shut down");
@ -55,4 +55,4 @@ public class HelloWorldServer {
responseObserver.onCompleted();
}
}
}
}