Skip to content

Commit 0271fab

Browse files
PatrickJSbenlesh
authored andcommitted
style(GenerateOptions): typo Inital => Initial (#2083)
typos4dayz
1 parent af7e4e7 commit 0271fab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/observable/GenerateObservable.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface SchedulerState<T, S> {
2222

2323
export 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

Comments
 (0)