Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc in example #1714

Merged
merged 1 commit into from
Aug 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Extends the async "Hello World!" example to demonstrate use of
* <a href="https://grpc.io/docs/what-is-grpc/core-concepts/#deadlines">gRPC deadlines</a> aka timeout feature.
* <p/>
* <p>
* Start the {@link DeadlineServer} first.
*
* @see <a href="https://grpc.io/blog/deadlines/">gRPC and Deadlines</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Extends the async "Hello World!" example to demonstrate use of
* <a href="https://grpc.io/docs/what-is-grpc/core-concepts/#deadlines">gRPC deadlines</a> aka timeout feature.
* <p/>
* <p>
* Start this server first and then run the {@link DeadlineClient}.
*
* @see <a href="https://grpc.io/blog/deadlines/">gRPC and Deadlines</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

/**
* Implementation of the
* <a herf="https://github.com/grpc/grpc/blob/master/examples/protos/helloworld.proto">gRPC hello world example</a>
* <a href="https://github.com/grpc/grpc/blob/master/examples/protos/helloworld.proto">gRPC hello world example</a>
* using async ServiceTalk APIS.
* <p/>
* <p>
* Start the {@link HelloWorldServer} first.
*/
public final class HelloWorldClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@

/**
* Implementation of the
* <a herf="https://github.com/grpc/grpc/blob/master/examples/protos/helloworld.proto">gRPC hello world example</a>
* <a href="https://github.com/grpc/grpc/blob/master/examples/protos/helloworld.proto">gRPC hello world example</a>
* using async ServiceTalk APIS.
* <p/>
* <p>
* Start this server first and then run the {@link HelloWorldClient}.
*/
public class HelloWorldServer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ public Single<Buffer> hello(final Single<Buffer> who,
* operators for processing it on the produce side.
* <p>
* Test with:
* <pre>
* <pre>{@code
* echo "An empty file" > sample.txt && curl -vF "[email protected]" \
* http://localhost:8080/greetings/multipart-hello
* </pre>
* }</pre>
*
* @param ctx the {@link ConnectionContext}.
* @param file the multi-part file contents.
Expand Down