Skip to content

Commit 652b5a4

Browse files
authored
docs: update GroupsAccumulator instead of GroupAccumulator (#13787)
Fixing `GroupsAccumulator` trait name in its docs
1 parent bfabd48 commit 652b5a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/expr-common/src/groups_accumulator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)