diff --git a/src/observable/GenerateObservable.ts b/src/observable/GenerateObservable.ts index 8f59767e02..7024941970 100644 --- a/src/observable/GenerateObservable.ts +++ b/src/observable/GenerateObservable.ts @@ -22,7 +22,7 @@ interface SchedulerState { export interface GenerateBaseOptions { /** - * Inital state. + * Initial state. */ initialState: S; /** @@ -124,7 +124,7 @@ export class GenerateObservable extends Observable { * 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. * * @@ -148,7 +148,7 @@ export class GenerateObservable extends Observable { * 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. * *