Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Fake type synonym partially applied #45

Merged

Commits on Mar 1, 2022

  1. Make Fake type synonym partially applied

    Since GHC forces type synonyms to have all their arguments everywhere by
    default, `Fake` having an unnecessary argument made it harder to use -
    for example, `ReaderT r Fake a` was not valid code, because `Fake` was
    missing its argument, despite that being a valid and useful monad stack.
    
    This makes the synonym partially applied so GHC won't complain that it's
    missing arguments.
    ivanbakel committed Mar 1, 2022
    Configuration menu
    Copy the full SHA
    8eff80d View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. Add to ChangeLog

    ivanbakel committed Mar 2, 2022
    Configuration menu
    Copy the full SHA
    c0550c1 View commit details
    Browse the repository at this point in the history