@@ -22,7 +22,7 @@ interface SchedulerState<T, S> {
2222
2323export interface GenerateBaseOptions < S > {
2424 /**
25- * Inital state.
25+ * Initial state.
2626 */
2727 initialState : S ;
2828 /**
@@ -124,7 +124,7 @@ export class GenerateObservable<T, S> extends Observable<T> {
124124 * Generates an observable sequence by running a state-driven loop
125125 * producing the sequence's elements, using the specified scheduler
126126 * to send out observer messages.
127- * The overload accepts options object that might contain inital state, iterate,
127+ * The overload accepts options object that might contain initial state, iterate,
128128 * condition and scheduler.
129129 *
130130 * <img src="./img/generate.png" width="100%">
@@ -148,7 +148,7 @@ export class GenerateObservable<T, S> extends Observable<T> {
148148 * Generates an observable sequence by running a state-driven loop
149149 * producing the sequence's elements, using the specified scheduler
150150 * to send out observer messages.
151- * The overload accepts options object that might contain inital state, iterate,
151+ * The overload accepts options object that might contain initial state, iterate,
152152 * condition, result selector and scheduler.
153153 *
154154 * <img src="./img/generate.png" width="100%">
0 commit comments