/**
* Adds a HAVING condition to the query by AND.
* [...]
* Array values are quoted and comma-separated.
*
* <code>
* * $select->having("COUNT(id) = $count");
*
* * $select->having('COUNT(id) = ?', $count);
*
* * $select->having('COUNT(id) = :count');
* $select->bind('count', $count); * </code>
* [...]
*/
This patch fixes the API docs.