Skip to content

Instantly share code, notes, and snippets.

@Zert
Last active August 29, 2015 14:02
Show Gist options
  • Save Zert/111dab89423e52fbc4ca to your computer and use it in GitHub Desktop.
Save Zert/111dab89423e52fbc4ca to your computer and use it in GitHub Desktop.
./XXX.hs:14:18: Warning: Redundant bracket
Found:
(V.length rd) + (V.length rf)
Why not:
V.length rd + (V.length rf)
./XXX.hs:14:18: Warning: Redundant bracket
Found:
(V.length rd) + (V.length rf)
Why not:
(V.length rd) + V.length rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment