File tree Expand file tree Collapse file tree
datafusion/expr-common/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ impl EmitTo {
8282/// group
8383/// ```
8484///
85- /// # Notes on Implementing `GroupAccumulator `
85+ /// # Notes on Implementing `GroupsAccumulator `
8686///
8787/// All aggregates must first implement the simpler [`Accumulator`] trait, which
8888/// handles state for a single group. Implementing `GroupsAccumulator` is
@@ -100,7 +100,7 @@ impl EmitTo {
100100/// accumulator manages the specific state, one per `group_index`.
101101///
102102/// `group_index`es are contiguous (there aren't gaps), and thus it is
103- /// expected that each `GroupAccumulator ` will use something like `Vec<..>`
103+ /// expected that each `GroupsAccumulator ` will use something like `Vec<..>`
104104/// to store the group states.
105105///
106106/// [`Accumulator`]: crate::accumulator::Accumulator
You can’t perform that action at this time.
0 commit comments