Skip to content

Commit

Permalink
doc(typo): use the correct form of "its" (#5328)
Browse files Browse the repository at this point in the history
"it's" means "it is", and "its" is the proper form for possession.
  • Loading branch information
eventualbuddha authored and benlesh committed Mar 17, 2020
1 parent 4b5e5d7 commit 50f4ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/observable/merge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ export function merge<T, R>(...observables: (ObservableInput<any> | SchedulerLik
* // - First timer1 and timer2 will run concurrently
* // - timer1 will emit a value every 1000ms for 10 iterations
* // - timer2 will emit a value every 2000ms for 6 iterations
* // - after timer1 hits it's max iteration, timer2 will
* // - after timer1 hits its max iteration, timer2 will
* // continue, and timer3 will start to run concurrently with timer2
* // - when timer2 hits it's max iteration it terminates, and
* // - when timer2 hits its max iteration it terminates, and
* // timer3 will continue to emit a value every 500ms until it is complete
* ```
*
Expand Down

0 comments on commit 50f4ecf

Please sign in to comment.