From 037a6676ee1fc8082147760de2971957c85c8fac Mon Sep 17 00:00:00 2001 From: Yashash H L Date: Thu, 19 Dec 2024 18:35:47 +0530 Subject: [PATCH] fix docs Signed-off-by: Yashash H L --- numaflow/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numaflow/src/lib.rs b/numaflow/src/lib.rs index f0220dc..aadec84 100644 --- a/numaflow/src/lib.rs +++ b/numaflow/src/lib.rs @@ -34,10 +34,10 @@ pub mod sink; /// building [side input](https://numaflow.numaproj.io/user-guide/reference/side-inputs/) pub mod sideinput; -/// batchmap is for writing the [batch map mode](https://numaflow.numaproj.io/user-guide/user-defined-functions/map/batchmap/) handlers. +/// batchmap is for writing the map in [batch mode](https://numaflow.numaproj.io/user-guide/user-defined-functions/map/map/#batch-map-mode) handlers. pub mod batchmap; -/// mapstream is for writing the [mapstream](https://numaflow.numaproj.io/user-guide/user-defined-functions/map/mapstream/) handlers. +/// mapstream is for writing the map in [stream mode](https://numaflow.numaproj.io/user-guide/user-defined-functions/map/map/#streaming-mode) handlers. pub mod mapstream; mod servers;