/**
* Flush the current brigade down the filter stack.
- * @param f The current filter
+ * @param f The filter we are passing to
* @param bb The brigade to flush
*/
AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb);
/**
* Write a buffer for the current filter, buffering if possible.
- * @param f the filter doing the writing
+ * @param f the filter we are writing to
* @param bb The brigade to buffer into
* @param data The data to write
* @param nbyte The number of bytes in the data
/**
* Write a buffer for the current filter, buffering if possible.
- * @param f the filter doing the writing
+ * @param f the filter we are writing to
* @param bb The brigade to buffer into
* @param str The string to write
*/
/**
* Write a character for the current filter, buffering if possible.
- * @param f the filter doing the writing
+ * @param f the filter we are writing to
* @param bb The brigade to buffer into
* @param c The character to write
*/
/**
* Write an unspecified number of strings to the current filter
- * @param f the filter doing the writing
+ * @param f the filter we are writing to
* @param bb The brigade to buffer into
* @param ... The strings to write
*/
/**
* Output data to the filter in printf format
- * @param f the filter doing the writing
+ * @param f the filter we are writing to
* @param bb The brigade to buffer into
* @param fmt The format string
* @param ... The argumets to use to fill out the format string