Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
luizbills committed Oct 7, 2018
1 parent 9de57e3 commit 8895b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ const dependencies = {
const state = 7

// isEven :: Number -> Boolean
const isEven = x => x % 2 == 0
const isEven = x => x % 2 === 0

// yesOrNo :: Boolean -> String
const yesIfEven = ifElse (isEven) ($`Yes, ${0} is even.`) ($`NO, ${0} is not even.`)
Expand Down

0 comments on commit 8895b46

Please sign in to comment.