File tree 1 file changed +2
-2
lines changed
datafusion/expr-common/src 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ impl EmitTo {
82
82
/// group
83
83
/// ```
84
84
///
85
- /// # Notes on Implementing `GroupAccumulator `
85
+ /// # Notes on Implementing `GroupsAccumulator `
86
86
///
87
87
/// All aggregates must first implement the simpler [`Accumulator`] trait, which
88
88
/// handles state for a single group. Implementing `GroupsAccumulator` is
@@ -100,7 +100,7 @@ impl EmitTo {
100
100
/// accumulator manages the specific state, one per `group_index`.
101
101
///
102
102
/// `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<..>`
104
104
/// to store the group states.
105
105
///
106
106
/// [`Accumulator`]: crate::accumulator::Accumulator
You can’t perform that action at this time.
0 commit comments