Fix english to make it sound more natural.

This commit is contained in:
(cdep)illabout 2015-03-11 17:12:26 +09:00
parent 821f0bf9b0
commit 1a9011eb33

View File

@ -5,12 +5,12 @@ title: Project top page
### What is HRR?
Haskell Relational Record (HRR) is a joined query generator based on typefull relational algebra and a mapper between SQL value list and Haskell record type.
Haskell Relational Record (HRR) is a query generator based on typed relational algebra and a mapper between SQL value lists and Haskell record types.
- Abstracted - relations are expressed in high level expressions and they are translated into SQL statements. Drivers are provided for DB2, ProsgreSQL, SQLite, MySQL, MicroSoft SQL Server and OracleSQL.
- Type safe - if HRR code in Haskell is compiled, it is ensured that valid SQL statements are generated. Even placeholders are typed.
- Composable - relations can be composed to build a bigger relation.
- Automatic - SQL schema is obtained from a target DB and Haskell recode types are automatically generated at compile time.
- Abstracted - relations are expressed as high level expressions and they are translated into SQL statements. Drivers are provided for DB2, ProsgreSQL, SQLite, MySQL, MicroSoft SQL Server and OracleSQL.
- Type safe - SQL statements produced by HRR are guaranteed to be valid if the Haskell code compiles. Even placeholders are typed.
- Composable - relations can be composed to build bigger relations.
- Automatic - SQL schema is obtained from a target DB and Haskell types are automatically generated at compile time.
### Documentations
@ -22,7 +22,7 @@ Haskell Relational Record (HRR) is a joined query generator based on typefull re
### Questions
If you have any questions and/or suggestions, please record [github issues](https://github.com/khibino/haskell-relational-record/issues).
If you have any questions and/or suggestions, please submit [github issues](https://github.com/khibino/haskell-relational-record/issues).
### Authors and contributors