diff --git a/src/main/java/io/reactivex/Completable.java b/src/main/java/io/reactivex/Completable.java
index 42ae598e35..d00cd9b451 100644
--- a/src/main/java/io/reactivex/Completable.java
+++ b/src/main/java/io/reactivex/Completable.java
@@ -264,6 +264,8 @@ public static Completable concat(Publisher extends CompletableSource> sources,
/**
* Provides an API (via a cold Completable) that bridges the reactive world with the callback-style world.
*
+ *
+ *
* Example:
*
* Completable.create(emitter -> {
@@ -305,6 +307,8 @@ public static Completable create(CompletableOnSubscribe source) {
* Constructs a Completable instance by wrapping the given source callback
* without any safeguards; you should manage the lifecycle and response
* to downstream cancellation/dispose.
+ *
+ *
*
*
Scheduler:
*
{@code unsafeCreate} does not operate by default on a particular {@link Scheduler}.
@@ -1585,6 +1589,8 @@ public final Completable doFinally(Action onFinally) {
* and providing a new {@code CompletableObserver}, containing the custom operator's intended business logic, that will be
* used in the subscription process going further upstream.
*
+ *
+ *
* Generally, such a new {@code CompletableObserver} will wrap the downstream's {@code CompletableObserver} and forwards the
* {@code onError} and {@code onComplete} events from the upstream directly or according to the
* emission pattern the custom operator's business logic requires. In addition, such operator can intercept the
@@ -1831,6 +1837,8 @@ public final Completable onTerminateDetach() {
/**
* Returns a Completable that repeatedly subscribes to this Completable until cancelled.
+ *
+ *
*
*
Scheduler:
*
{@code repeat} does not operate by default on a particular {@link Scheduler}.
@@ -1845,6 +1853,8 @@ public final Completable repeat() {
/**
* Returns a Completable that subscribes repeatedly at most the given times to this Completable.
+ *
+ *
*
*
Scheduler:
*
{@code repeat} does not operate by default on a particular {@link Scheduler}.
@@ -1862,6 +1872,8 @@ public final Completable repeat(long times) {
/**
* Returns a Completable that repeatedly subscribes to this Completable so long as the given
* stop supplier returns false.
+ *
+ *
*
*
Scheduler:
*
{@code repeatUntil} does not operate by default on a particular {@link Scheduler}.
@@ -1879,6 +1891,8 @@ public final Completable repeatUntil(BooleanSupplier stop) {
/**
* Returns a Completable instance that repeats when the Publisher returned by the handler
* emits an item or completes when this Publisher emits a completed event.
+ *
+ *
*
*
Scheduler:
*
{@code repeatWhen} does not operate by default on a particular {@link Scheduler}.
@@ -1897,6 +1911,8 @@ public final Completable repeatWhen(Function super Flowable