natefaubion / purescript-spork

Elm-like for PureScript
MIT License
157 stars 9 forks source link

Typo in `style` attribute #4

Closed dederer closed 6 years ago

dederer commented 6 years ago

In the file src/Spork/Html/Properties.purs

119: style ∷ ∀ r i. String → IProp (style ∷ String | r) i
120: style = Html.prop "style
                  ^^^^

should be

120: style = Html.attr "style"