diff --git a/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineClient.java b/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineClient.java index b52109292f..a299c85497 100644 --- a/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineClient.java +++ b/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineClient.java @@ -29,7 +29,7 @@ /** * Extends the async "Hello World!" example to demonstrate use of * gRPC deadlines aka timeout feature. - *

+ *

* Start the {@link DeadlineServer} first. * * @see gRPC and Deadlines diff --git a/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineServer.java b/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineServer.java index 2e8fe0f132..39e9cf62a9 100644 --- a/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineServer.java +++ b/servicetalk-examples/grpc/deadline/src/main/java/io/servicetalk/examples/grpc/deadline/DeadlineServer.java @@ -31,7 +31,7 @@ /** * Extends the async "Hello World!" example to demonstrate use of * gRPC deadlines aka timeout feature. - *

+ *

* Start this server first and then run the {@link DeadlineClient}. * * @see gRPC and Deadlines diff --git a/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldClient.java b/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldClient.java index 62307301ce..aa4ace1ff5 100644 --- a/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldClient.java +++ b/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldClient.java @@ -25,9 +25,9 @@ /** * Implementation of the - * gRPC hello world example + * gRPC hello world example * using async ServiceTalk APIS. - *

+ *

* Start the {@link HelloWorldServer} first. */ public final class HelloWorldClient { diff --git a/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldServer.java b/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldServer.java index 955ea9de89..e743030477 100644 --- a/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldServer.java +++ b/servicetalk-examples/grpc/helloworld/src/main/java/io/servicetalk/examples/grpc/helloworld/async/HelloWorldServer.java @@ -27,9 +27,9 @@ /** * Implementation of the - * gRPC hello world example + * gRPC hello world example * using async ServiceTalk APIS. - *

+ *

* Start this server first and then run the {@link HelloWorldClient}. */ public class HelloWorldServer { diff --git a/servicetalk-examples/http/jaxrs/src/main/java/io/servicetalk/examples/http/jaxrs/HelloWorldJaxRsResource.java b/servicetalk-examples/http/jaxrs/src/main/java/io/servicetalk/examples/http/jaxrs/HelloWorldJaxRsResource.java index b54decbd68..f08aed60bb 100644 --- a/servicetalk-examples/http/jaxrs/src/main/java/io/servicetalk/examples/http/jaxrs/HelloWorldJaxRsResource.java +++ b/servicetalk-examples/http/jaxrs/src/main/java/io/servicetalk/examples/http/jaxrs/HelloWorldJaxRsResource.java @@ -156,10 +156,10 @@ public Single hello(final Single who, * operators for processing it on the produce side. *

* Test with: - *

+     * 
{@code
      * echo "An empty file" > sample.txt && curl -vF "file=@sample.txt" \
      * http://localhost:8080/greetings/multipart-hello
-     * 
+ * }
* * @param ctx the {@link ConnectionContext}. * @param file the multi-part file contents.