flaw-sdl/Flaw/Sdl.hs

Summary

Maintainability
Test Coverage

Use newtype instead of data
Open

data SdlException = SdlException String deriving Show
Severity: Minor
Found in flaw-sdl/Flaw/Sdl.hs by hlint

Found

data SdlException
  = SdlException String
  deriving Show

Perhaps

newtype SdlException
  = SdlException String
  deriving Show

Applying this change:

  • decreases laziness

There are no issues that match your filters.

Category
Status