From 78b4dc24c51d3a50100cc6fc78708638832533e7 Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 14 Jun 2007 14:36:50 +0000 Subject: [PATCH] --- manual/new/docs/en/native-sql.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/new/docs/en/native-sql.txt b/manual/new/docs/en/native-sql.txt index 68850f93b..f01b9ae10 100644 --- a/manual/new/docs/en/native-sql.txt +++ b/manual/new/docs/en/native-sql.txt @@ -82,7 +82,7 @@ $q->select('{u.*}, {p.*}') // here we tell that user table is bound to class called 'User' // we also add an alias for User class called 'u' // this alias will be used when referencing to User class - ->addComponent('u', 'User u'); + ->addComponent('u', 'User u') // here we add another component that is bound to table phonenumber // notice how we reference that the Phonenumber class is "User's phonenumber" ->addComponent('p', 'u.Phonenumber p');