-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Motivation: `./gradlew javadoc` command fails due to some javadoc rules violations in examples. Modifications: - Don't use self-closing tags; - Fix a link attribute for `a` tag; - Use `<pre>` + `{@code ...}` to not worry about manual chars escape; Result: `./gradlew javadoc` command is happy.
- Loading branch information
1 parent
cb454d1
commit 8ee20bb
Showing
5 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|