Skip to content

Commit

Permalink
style(fromEvent): fix spacing after catch
Browse files Browse the repository at this point in the history
Fix eslint error
  • Loading branch information
TylorS committed Dec 16, 2015
1 parent 298ebbb commit 2c37bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fromEvent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const tryEvent =
(t, x, sink) => {
try {
sink.event(t, x)
} catch(e) {
} catch (e) {
sink.error(t, e)
}
}
Expand Down

0 comments on commit 2c37bfb

Please sign in to comment.