Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Update README.md. A little love made to sql syntax highlight. #253

Merged
merged 1 commit into from Jul 19, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -205,7 +205,7 @@ Person.where{name == 'Joe Blow'}
Not a very exciting example since equality is handled just fine via the
first example in standard Active Record. But consider the following query:

```
```sql
SELECT "people".* FROM people
WHERE ("people"."name" LIKE 'Ernie%' AND "people"."salary" < 50000)
OR ("people"."name" LIKE 'Joe%' AND "people"."salary" > 100000)
Expand Down