Fix typo in README (#3)

This commit is contained in:
Elliot Cameron 2017-03-14 13:13:01 -04:00 committed by Oliver Charles
parent f95eee5525
commit 052a8e7475

View File

@ -24,7 +24,7 @@ single type parameter to denote "where" this data is, and a type family to
interpret each column. The above example would be written as
```haskell
data Birthday f = Birthday { bdName :: Anon f Text , bdName :: Anon f Day}
data Birthday f = Birthday { bdName :: Anon f Text , bdDay :: Anon f Day}
instance Table (Birthday Expr) (Birthday QueryResult)
```