As defined [here](http://hackage.haskell.org/package/base-4.8.2.0/docs/src/GHC.Base.html#Maybe): ``` haskell data Maybe a = Nothing | Just a deriving (Eq, Ord) ``` There's no indentation level that will result in the deriving being 2 spaces. It'll only do this: ``` haskell data Maybe a = Nothing | Just a deriving (Eq, Ord) ```