We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a31e17 commit 68b294eCopy full SHA for 68b294e
ng-advanced/rxjs/index.html
@@ -451,7 +451,7 @@ <h2>RxJS - Level 8: Error Handling</h2>
451
// j k l x4|
452
catchError(() => of('z'))
453
retry( 2 )
454
- retry({ delay: (error) => error === x1 : of(error) : throwError(() => error) })
+ retry({ delay: (error) => error === x1 ? of(error) : throwError(() => error) })
455
</code></pre>
456
<ul>
457
<li>Note: xN is an error</li>
@@ -472,7 +472,7 @@ <h2>RxJS - Level 8: Error Handling (Solution)</h2>
472
// a b c z
473
474
// a b c d e f g h i x3
475
476
// a b c d e f x2
477
478
<aside class="notes">
0 commit comments