summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
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()');