summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-09-14 04:11:25 +0100
committerJamie Matthews <[email protected]>2010-09-14 04:11:25 +0100
commitca5f9c9fdd55f1054fe8d1cc5c8b858997226fc9 (patch)
treeca94eb5dd1df1f87251b7ae59258274d26638815 /README.markdown
parent705409e300fa9e0724c6b2786a9d60c0153a00b6 (diff)
Fix indentation in README
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.markdown b/README.markdown
index b44bf45..2d2a93c 100644
--- a/README.markdown
+++ b/README.markdown
@@ -109,10 +109,10 @@ To add a `WHERE ... LIKE` clause, use:
There are four methods available for inequalities:
- * Less than: `$people = ORM::for_table('person')->where_lt('age', 10)->find_many();`
- * Greater than: `$people = ORM::for_table('person')->where_gt('age', 5)->find_many();`
- * Less than or equal: `$people = ORM::for_table('person')->where_lte('age', 10)->find_many();`
- * Greater than or equal: `$people = ORM::for_table('person')->where_gte('age', 5)->find_many();`
+* Less than: `$people = ORM::for_table('person')->where_lt('age', 10)->find_many();`
+* Greater than: `$people = ORM::for_table('person')->where_gt('age', 5)->find_many();`
+* Less than or equal: `$people = ORM::for_table('person')->where_lte('age', 10)->find_many();`
+* Greater than or equal: `$people = ORM::for_table('person')->where_gte('age', 5)->find_many();`
#### Raw WHERE clauses ####