diff --git a/stub/src/main/java/io/grpc/stub/StreamObserver.java b/stub/src/main/java/io/grpc/stub/StreamObserver.java index cf7cc25896..3a5c756e73 100644 --- a/stub/src/main/java/io/grpc/stub/StreamObserver.java +++ b/stub/src/main/java/io/grpc/stub/StreamObserver.java @@ -26,8 +26,8 @@ package io.grpc.stub; * {@code StreamObserver} and passes it to the GRPC library for receiving. * *

Implementations are not required to be thread-safe (but should be - * thread-compatible). - * Separate {@code StreamObserver}s do + * + * thread-compatible). Separate {@code StreamObserver}s do * not need to be synchronized together; incoming and outgoing directions are independent. * Since individual {@code StreamObserver}s are not thread-safe, if multiple threads will be * writing to a {@code StreamObserver} concurrently, the application must synchronize calls.