diff --git a/library/Potoki/Core/Transform/Basic.hs b/library/Potoki/Core/Transform/Basic.hs
--- a/library/Potoki/Core/Transform/Basic.hs
+++ b/library/Potoki/Core/Transform/Basic.hs
@@ -93,12 +93,21 @@
       in loop
 
 {-|
-Chunk to vectors of the given size.
-Useful as a precursor of 'concurrently' in cases where the lifted transform's iteration is too light.
+Alias to "batch".
 -}
-{-# INLINABLE chunk #-}
+{-# DEPRECATED chunk "Use 'batch' instead" #-}
 chunk :: Int -> Transform a (Vector a)
-chunk size = if size < 1
+chunk = batch
+
+{-|
+Chunk the stream to vector batches of the given size.
+
+It's useful in combination with 'concurrently' in cases where the lifted transform's iteration is too light.
+Actually, there is a composed variation of 'concurrently', which utilizes it: 'concurrentlyWithBatching'.
+-}
+{-# INLINABLE batch #-}
+batch :: Int -> Transform a (Vector a)
+batch size = if size < 1
   then Transform $ const $ liftIO $ return $ empty
   else Transform $ \ (Fetch fetch) -> liftIO $ do
     mvec <- MutableGenericVector.new size
diff --git a/library/Potoki/Core/Transform/Concurrency.hs b/library/Potoki/Core/Transform/Concurrency.hs
--- a/library/Potoki/Core/Transform/Concurrency.hs
+++ b/library/Potoki/Core/Transform/Concurrency.hs
@@ -154,6 +154,6 @@
 
 concurrentlyWithBatching :: Int -> Int -> Transform a b -> Transform a b
 concurrentlyWithBatching batching concurrency transform =
-  chunk batching >>> bufferize concurrency >>>
-  unsafeConcurrently concurrency (vector >>> transform >>> chunk batching) >>>
+  batch batching >>> bufferize concurrency >>>
+  unsafeConcurrently concurrency (vector >>> transform >>> batch batching) >>>
   vector
diff --git a/potoki-core.cabal b/potoki-core.cabal
--- a/potoki-core.cabal
+++ b/potoki-core.cabal
@@ -1,5 +1,5 @@
 name: potoki-core
-version: 2.2.12
+version: 2.2.13
 synopsis: Low-level components of "potoki"
 description:
   Provides everything required for building custom instances of
