Skip to content

Commit

Permalink
Merge pull request #141 from luizbills/patch-8
Browse files Browse the repository at this point in the history
fix code style
  • Loading branch information
joelnet committed Oct 8, 2018
2 parents 2f6e40e + 8895b46 commit a8e1f57
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 a8e1f57

Please sign in to comment.