diff --git a/documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml b/documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml index 6d51e0f09e0..7efde885525 100644 --- a/documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml +++ b/documentation/manual/en/module_specs/Zend_Db_Table_Rowset.xml @@ -170,7 +170,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';