This is an automated email from the ASF dual-hosted git repository.
korowa pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 652b5a4fff docs: update GroupsAccumulator instead of GroupAccumulator
(#13787)
652b5a4fff is described below
commit 652b5a4fffd3a7bf578f72e0bbb6d13d14207e85
Author: Raz Luvaton <[email protected]>
AuthorDate: Sun Dec 15 13:56:20 2024 +0200
docs: update GroupsAccumulator instead of GroupAccumulator (#13787)
Fixing `GroupsAccumulator` trait name in its docs
---
datafusion/expr-common/src/groups_accumulator.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/expr-common/src/groups_accumulator.rs
b/datafusion/expr-common/src/groups_accumulator.rs
index 2c8b126cb5..5ff1c1d072 100644
--- a/datafusion/expr-common/src/groups_accumulator.rs
+++ b/datafusion/expr-common/src/groups_accumulator.rs
@@ -82,7 +82,7 @@ impl EmitTo {
/// group
/// ```
///
-/// # Notes on Implementing `GroupAccumulator`
+/// # Notes on Implementing `GroupsAccumulator`
///
/// All aggregates must first implement the simpler [`Accumulator`] trait,
which
/// handles state for a single group. Implementing `GroupsAccumulator` is
@@ -100,7 +100,7 @@ impl EmitTo {
/// accumulator manages the specific state, one per `group_index`.
///
/// `group_index`es are contiguous (there aren't gaps), and thus it is
-/// expected that each `GroupAccumulator` will use something like `Vec<..>`
+/// expected that each `GroupsAccumulator` will use something like `Vec<..>`
/// to store the group states.
///
/// [`Accumulator`]: crate::accumulator::Accumulator
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]