fsprojects / FSharp.Control.Reactive

Extensions and wrappers for using Reactive Extensions (Rx) with F#.
http://fsprojects.github.io/FSharp.Control.Reactive
Other
284 stars 58 forks source link

Typo in the `finallyDo` description #132

Closed mrakgr closed 4 years ago

mrakgr commented 4 years ago
    /// Invokes a specified action after the source observable sequence
    /// terminates gracefully of exceptionally
    let finallyDo  finallyAction  source  =
        Observable.Finally( source, Action finallyAction ) 

gracefully of exceptionally should be gracefully or exceptionally.

Also, the above function seems to be equivalent to performFinally.

panesofglass commented 4 years ago

Good point. Want to submit a PR to fix this?