Browse Source

[ZF-11822] DOCUMENTATION
- Fix typo in zend.db.table.rowset.html


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24508 44c647ce-9c0f-0410-b52a-842ac1e357ba

adamlundrigan 14 years ago
parent
commit
0698c90bec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml

+ 1 - 1
documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml

@@ -171,7 +171,7 @@ $bugs = new Bugs();
 $rowset = $bugs->fetchAll();
 
 // retrieve the 9th element immediately:
-$row9->getRow(8);
+$row9 = $rowset->getRow(8);
 
 // and use it:
 $row9->assigned_to = 'mmouse';