summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorBrian Herbert <[email protected]>2013-01-03 11:17:03 +0900
committerBrian Herbert <[email protected]>2013-01-03 11:17:03 +0900
commite356c3474438a0a1c333423d26c0c3754ff113c2 (patch)
treeaf342feeb1a8a6df2a6a47d627d5ae2fc86471e3 /README.markdown
parent2237d7371c26013740ae479ccf1f3cc8c57fd1fa (diff)
Fixing minor code typo in README
Sorry to be nitpicky. Removing a double semicolon in the set_expr example.
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 dcad3a4..8d2f1b2 100644
--- a/README.markdown
+++ b/README.markdown
@@ -458,7 +458,7 @@ To update the database, change one or more of the properties of the object, then
It is possible to set properties on the model that contain database expressions using the `set_expr` method.
- $person = ORM::for_table('person')->find_one(5);;
+ $person = ORM::for_table('person')->find_one(5);
$person->set('name', 'Bob Smith');
$person->age = 20;
$person->set_expr('updated', 'NOW()');