Update README.md

The application of `just` is unnecessary, and actually leads to a type error.
This commit is contained in:
Steven Leiva 2019-04-06 10:50:01 -05:00 committed by GitHub
parent 135064684c
commit 67b75ce0ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,7 +158,7 @@ However, you may want your results to include people who don't have any blog pos
```haskell
select $
from $ \(p `LeftOuterJoin`` mb) -> do
on (just (p ^. PersonId) ==. mb ?. BlogPostAuthorId)
on (p ^. PersonId ==. mb ?. BlogPostAuthorId)
orderBy [asc (p ^. PersonName), asc (mb ?. BlogPostTitle)]
return (p, mb)
```