From 49d4a1b6e75d2344f03606ebff8f4e550144d1fa Mon Sep 17 00:00:00 2001 From: latent-9 <296084221+latent-9@users.noreply.github.com> Date: Sun, 9 Aug 2026 21:12:28 +1200 Subject: [PATCH] Fix typo in doc comment --- core/src/main/scala/ox/flow/Flow.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/ox/flow/Flow.scala b/core/src/main/scala/ox/flow/Flow.scala index 0591ac53..4ed36f17 100644 --- a/core/src/main/scala/ox/flow/Flow.scala +++ b/core/src/main/scala/ox/flow/Flow.scala @@ -46,7 +46,7 @@ object FlowStage: * part of [[Flow.usingEmit]] or [[Flow.mapUsingEmit]]. */ trait FlowEmit[-T]: - /** Emit a value to be processed downstream. Blocks until the value is fully processed, or throws an exception if an error occured. */ + /** Emit a value to be processed downstream. Blocks until the value is fully processed, or throws an exception if an error occurred. */ def apply(t: T): Unit object FlowEmit: