From 052a8e74752aa67e06c14d1ae9d8ad210aa3335a Mon Sep 17 00:00:00 2001 From: Elliot Cameron <3noch@users.noreply.github.com> Date: Tue, 14 Mar 2017 13:13:01 -0400 Subject: [PATCH] Fix typo in README (#3) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b3526a..828b0aa 100644 --- a/README.md +++ b/README.md @@ -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) ```