I think the chapter on Hindley-Milner type inference needs to be pushed, the [website](http://dev.stephendiehl.com/fun/006_hindley_milner.html#context) has this code: `newtype TypeEnv = TypeEnv (Map.Map Var Scheme)` Whereas the [chapter in git](https://github.com/sdiehl/write-you-a-haskell/blob/master/006_hindley_milner.md) has this: `newtype TypeEnv = TypeEnv (Map.Map Name Scheme)` Thanks!