This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new a2caed9bd storm-client: fix 'accross' -> 'across' in Stream.java
Javadoc
a2caed9bd is described below
commit a2caed9bd2642755c039376fa282ac2c417d2b11
Author: Sai Asish Y <[email protected]>
AuthorDate: Fri Apr 17 01:22:37 2026 -0700
storm-client: fix 'accross' -> 'across' in Stream.java Javadoc
Single-word spelling correction (two instances in the same sentence)
in the Javadoc of Trident Stream.java.
No functional changes.
Signed-off-by: Sai Asish Y <[email protected]>
---
storm-client/src/jvm/org/apache/storm/trident/Stream.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/storm-client/src/jvm/org/apache/storm/trident/Stream.java
b/storm-client/src/jvm/org/apache/storm/trident/Stream.java
index e08e20f5d..8e42c03a9 100644
--- a/storm-client/src/jvm/org/apache/storm/trident/Stream.java
+++ b/storm-client/src/jvm/org/apache/storm/trident/Stream.java
@@ -83,7 +83,7 @@ import org.apache.storm.utils.Utils;
/**
* A Stream represents the core data model in Trident, and can be thought of
as a "stream" of tuples that are processed as a series of small
- * batches. A stream is partitioned accross the nodes in the cluster, and
operations are applied to a stream in parallel accross each
+ * batches. A stream is partitioned across the nodes in the cluster, and
operations are applied to a stream in parallel across each
* partition.
*
* <p>There are five types of operations that can be performed on streams in
Trident