Skip to content

Commit 9b5575d

Browse files
committed
Correct small grammar error in comment.
1 parent 192144e commit 9b5575d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private void start() throws Exception {
2424
Runtime.getRuntime().addShutdownHook(new Thread() {
2525
@Override
2626
public void run() {
27-
// Use stderr here since the logger may has been reset by its JVM shutdown hook.
27+
// Use stderr here since the logger may have been reset by its JVM shutdown hook.
2828
System.err.println("*** shutting down gRPC server since JVM is shutting down");
2929
HelloWorldServer.this.stop();
3030
System.err.println("*** server shut down");
@@ -55,4 +55,4 @@ public void sayHello(HelloRequest req, StreamObserver<HelloResponse> responseObs
5555
responseObserver.onCompleted();
5656
}
5757
}
58-
}
58+
}

0 commit comments

Comments
 (0)