diff --git a/src/operator/catch.ts b/src/operator/catch.ts
index ab7aeed5d3..f6e4fe74ab 100644
--- a/src/operator/catch.ts
+++ b/src/operator/catch.ts
@@ -8,6 +8,8 @@ import { subscribeToResult } from '../util/subscribeToResult';
/**
* Catches errors on the observable to be handled by returning a new observable or throwing an error.
*
+ *
+ *
* @example
Continues with a different Observable when there's an error
*
* Observable.of(1, 2, 3, 4, 5)
@@ -18,7 +20,8 @@ import { subscribeToResult } from '../util/subscribeToResult';
* return n;
* })
* .catch(err => Observable.of('I', 'II', 'III', 'IV', 'V'))
- * .subscribe(x => console.log(x)); // -> 1, 2, 3, I, II, III, IV, V
+ * .subscribe(x => console.log(x));
+ * // 1, 2, 3, I, II, III, IV, V
*
* @example Retries the caught source Observable again in case of error, similar to retry() operator
*