Skip to content

Commit

Permalink
style(GenerateOptions): typo Inital => Initial (#2083)
Browse files Browse the repository at this point in the history
typos4dayz
  • Loading branch information
PatrickJS authored and benlesh committed Oct 25, 2016
1 parent af7e4e7 commit 0271fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/observable/GenerateObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface SchedulerState<T, S> {

export interface GenerateBaseOptions<S> {
/**
* Inital state.
* Initial state.
*/
initialState: S;
/**
Expand Down Expand Up @@ -124,7 +124,7 @@ export class GenerateObservable<T, S> extends Observable<T> {
* Generates an observable sequence by running a state-driven loop
* producing the sequence's elements, using the specified scheduler
* to send out observer messages.
* The overload accepts options object that might contain inital state, iterate,
* The overload accepts options object that might contain initial state, iterate,
* condition and scheduler.
*
* <img src="./img/generate.png" width="100%">
Expand All @@ -148,7 +148,7 @@ export class GenerateObservable<T, S> extends Observable<T> {
* Generates an observable sequence by running a state-driven loop
* producing the sequence's elements, using the specified scheduler
* to send out observer messages.
* The overload accepts options object that might contain inital state, iterate,
* The overload accepts options object that might contain initial state, iterate,
* condition, result selector and scheduler.
*
* <img src="./img/generate.png" width="100%">
Expand Down

0 comments on commit 0271fab

Please sign in to comment.