summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-10-07 04:29:07 +0100
committerJamie Matthews <[email protected]>2010-10-07 04:29:07 +0100
commit919e83f45f0768d99c309609ab3bf494baad24d2 (patch)
tree81a3a2046ca632561f655e337852e41f4b91c5a6 /README.markdown
parent3988a6ae7bf42d4571e76c371a9dbb38d246dfcf (diff)
Correct heading level in README
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 2b4d944..8e197e3 100644
--- a/README.markdown
+++ b/README.markdown
@@ -130,7 +130,7 @@ Similarly, to add a `WHERE ... NOT LIKE` clause, use:
$people = ORM::for_table('person')->where_not_like('name', '%bob%')->find_many();
-#### Set membership: `where_in` and `where_not_in` #####
+##### Set membership: `where_in` and `where_not_in` #####
To add a `WHERE ... IN ()` or `WHERE ... NOT IN ()` clause, use the `where_in` and `where_not_in` methods respectively.