ZF-1894: Typo in "22.2.3.1. Memory Limit"
Description
This code sample in 22.2.3.1. of the programmer's reference documentation:
$oldLimit = $memoryManager->getMemoryLimit(); // Get memory limit in bytes
$memoryManager->getMemoryLimit($newLimit); // Set memory limit in bytes
Should be:
$oldLimit = $memoryManager->getMemoryLimit(); // Get memory limit in bytes
$memoryManager->setMemoryLimit($newLimit); // Set memory limit in bytes
The typo is in the name of the second method call.
Comments
Posted by Alexander Veremyev (alexander) on 2007-08-30T13:33:46.000+0000
Thanks!
Just fixed.
Posted by Bill Karwin (bkarwin) on 2007-08-31T18:20:41.000+0000
Assign to Alexander.
Posted by Alexander Veremyev (alexander) on 2007-09-01T03:41:24.000+0000
Already fixed in SVN
Posted by Wil Sinclair (wil) on 2008-06-15T14:10:41.000+0000
Changing to comply with new IT coventions for components.