diff --git a/manual/docs/en/component-overview.txt b/manual/docs/en/component-overview.txt index dee7e20f9..4c0df2044 100644 --- a/manual/docs/en/component-overview.txt +++ b/manual/docs/en/component-overview.txt @@ -214,7 +214,7 @@ $event->save(); The last line would execute sql (in sqlite): -INSERT INTO event (name, timepoint) VALUES (?, 'NOW()') +INSERT INTO event (name, timepoint) VALUES ('Rock festival', 'NOW()') +++ Getting record state @@ -510,7 +510,7 @@ foreach($users as $user) { } -The example above shows how to do this more efficiently by using the DQL API. +The example below shows how to do this more efficiently by using the DQL API. // load everything here