aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-02-18 14:51:39 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2014-02-18 14:51:39 -0800
commitb2a8dee86cfc00fa70841778e13e8b33f404e4e3 (patch)
tree042d43bde3a715fc8ebb0fe1e00cd790b0b25bd1
parent38321b114e87a2fc8560f7651890aa1b7c2c2362 (diff)
parent5c415ec6c10ad71684ab6422a43d10d3d07ad07c (diff)
downloadrails-b2a8dee86cfc00fa70841778e13e8b33f404e4e3.tar.gz
rails-b2a8dee86cfc00fa70841778e13e8b33f404e4e3.tar.bz2
rails-b2a8dee86cfc00fa70841778e13e8b33f404e4e3.zip
Merge pull request #247 from zenspider/fix-readme
fixed the readme per discussion w/ tenderlove
-rw-r--r--README.markdown6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index e2c60bd90e..99263dc2d2 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,6 +4,8 @@
## DESCRIPTION
+Arel Really Exasperates Logicians
+
Arel is a SQL AST manager for Ruby. It
1. Simplifies the generation of complex SQL queries
@@ -35,7 +37,7 @@ query.to_sql
### More Sophisticated Queries
-Here is a whirlwind tour through the most common relational operators. These will probably cover 80% of all interaction with the database.
+Here is a whirlwind tour through the most common SQL operators. These will probably cover 80% of all interaction with the database.
First is the 'restriction' operator, `where`:
@@ -72,7 +74,7 @@ users.project(users[:name]).group(users[:name])
# => SELECT users.name FROM users GROUP BY users.name
```
-The best property of the Relational Algebra is its "composability", or closure under all operations. For example, to restrict AND project, just "chain" the method invocations:
+The best property of arel is its "composability", or closure under all operations. For example, to restrict AND project, just "chain" the method invocations:
```ruby
users \