From 6431bcc91f5b9fe760e4c52485f06eebb9493a38 Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Fri, 7 Sep 2012 00:08:16 -0300 Subject: [PATCH] Typos and fixes to the blog post. --- docs/blog_post_2012_08_06 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/blog_post_2012_08_06 b/docs/blog_post_2012_08_06 index 6dc5049..3836d59 100644 --- a/docs/blog_post_2012_08_06 +++ b/docs/blog_post_2012_08_06 @@ -1,8 +1,8 @@ -Announcing esqueleto, a type-safe SQL EDSL for Haskell +Announcing esqueleto, a type-safe ESDL for SQL queries I'm very pleased to announce a preview release of esqueleto, a bare bones, type-safe EDSL for SQL queries. - + On the first part of this blog post I'll talk about persistent and HaskellDB. You may jump right into where I talk about esqueleto if you want, though. @@ -65,7 +65,7 @@ For these reasons I've created the HaskellDB is a type-safe EDSL that allows you to write SQL queries using relational algebra. It's as old as Parsec, having been introduced in 1999! -Recently there has been some people showing interesting in using it with Yesod. Last month Mats Rauhala wrote the following summary about his opinion at the time on Yesod's mailing list: +Recently some people have been showing interest in using it with Yesod. Last month Mats Rauhala wrote the following summary about his opinion at the time on Yesod's mailing list:
1. Direct sql @@ -240,6 +240,6 @@ WHERE stock.stock_id = end_of_day.stock_id AND (stock.ticker = ? AND end_of_day. The full power of raw SQL. Type-checked queries, no type signatures required. Complete control over the resulting SQL. The robustness and performance of persistent. And with only 800 source lines of code (+ 400 SLOC for the test suite). What's not to like about esqueleto? =D -This is just a preview release. I'm eager to hear what you have to say about it. Send pull requests, open issues, comment about it on reddit or send e-mails to Yesod's mailing list. Or, even better, give it a spin a let me know how it went! Its Haddock documentation should get you started. +This is just a preview release. I'm eager to hear what you have to say about it. Send pull requests, open issues, comment about it on reddit or send e-mails to Yesod's mailing list. Or, even better, give it a spin a let me know how it went! Its Haddock documentation should get you started. Thanks for reading this rather long blog post! =)