Skip to content

Commit

Permalink
docs(iif): fix typo
Browse files Browse the repository at this point in the history
Classical typo: 'excepts' instead of 'expects' ;-)
  • Loading branch information
letsmakesense authored Jan 13, 2022
1 parent 6d011f0 commit 7b4e254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/observable/iif.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ObservableInput } from '../types';
/**
* Checks a boolean at subscription time, and chooses between one of two observable sources
*
* `iif` excepts a function that returns a boolean (the `condition` function), and two sources,
* `iif` expects a function that returns a boolean (the `condition` function), and two sources,
* the `trueResult` and the `falseResult`, and returns an Observable.
*
* At the moment of subscription, the `condition` function is called. If the result is `true`, the
Expand Down

0 comments on commit 7b4e254

Please sign in to comment.