From 79447f2fc444ee4317a9fae119167cdced2f70f2 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Fri, 17 Apr 2026 01:22:37 -0700 Subject: [PATCH] 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 --- 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 e08e20f5dc5..8e42c03a936 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 @@ /** * 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. * *

There are five types of operations that can be performed on streams in Trident