Fix clippy warnings

This commit is contained in:
gwenn
2016-12-04 10:18:56 +01:00
parent 6ef0b1d64c
commit 8c6f585d52
3 changed files with 4 additions and 5 deletions

View File

@@ -279,7 +279,7 @@ pub trait Aggregate<A, T>
{
/// Initializes the aggregation context. Will be called prior to the first call
/// to `step()` to set up the context for an invocation of the function. (Note:
/// `init()` will not be called if the there are no rows.)
/// `init()` will not be called if there are no rows.)
fn init(&self) -> A;
/// "step" function called once for each row in an aggregate group. May be called