From e356c3474438a0a1c333423d26c0c3754ff113c2 Mon Sep 17 00:00:00 2001 From: Brian Herbert Date: Thu, 3 Jan 2013 11:17:03 +0900 Subject: Fixing minor code typo in README Sorry to be nitpicky. Removing a double semicolon in the set_expr example. --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.markdown') 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()'); -- cgit v1.2.3