Skip to content

Commit

Permalink
Added html tags for correct documentation rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Katkov authored and Nikita Katkov committed Nov 9, 2021
1 parent 349d2dd commit 7758341
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@

/**
* Indicates that the annotated executor (CoroutineContext, Scheduler)
* allows blocking methods execution.
*
* If a given executor does not allow blocking calls, {@link NonBlockingExecutor} should be used.
* allows blocking methods execution.<br><br>
* <p>
* If a given executor does not allow blocking calls, {@link NonBlockingExecutor} should be used.<br><br>
* <p>
*
* Example 1 (Kotlin coroutines):
* <pre>
Expand All @@ -41,8 +42,8 @@
* @Blocking fun blockingBuzz() { ... }
* }
* }
* </pre>
*
* </pre><br>
* <p>
* Example 2 (Java with Reactor framework):
* <pre>
* {@code
Expand All @@ -60,7 +61,7 @@
* }
* }
* </pre>
*
* <p>
* @see Blocking
* @see NonBlocking
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@

/**
* Indicates that the annotated executor (CoroutineContext, Scheduler)
* does not allow blocking methods execution.
* does not allow blocking methods execution.<br><br>
* <p>
*
* If a given executor allows blocking calls, {@link BlockingExecutor} should be used.
* If a given executor allows blocking calls, {@link BlockingExecutor} should be used.<br><br>
* <p>
*
* Example 1 (Kotlin coroutines):
* <pre>
Expand All @@ -41,9 +43,8 @@
* @Blocking fun blockingBuzz() { ... }
* }
* }
* </pre>
*
* <br>
* </pre><br>
* <p>
* Example 2 (Java with Reactor framework):
* <pre>
* {@code
Expand All @@ -61,7 +62,7 @@
* }
* }
* </pre>
*
* <p>
* @see Blocking
* @see NonBlocking
*/
Expand Down

0 comments on commit 7758341

Please sign in to comment.