diff --git a/dynamic-pipeline.cabal b/dynamic-pipeline.cabal
--- a/dynamic-pipeline.cabal
+++ b/dynamic-pipeline.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           dynamic-pipeline
-version:        0.3.1.2
+version:        0.3.1.3
 synopsis:       Library Type Safe implementation of Dynamic Pipeline Paradigm (DPP).
 description:    @dynamic-pipeline@ is a __/Type Safe/__ Dynamic and Parallel Streaming Library, which is an implementation of __Dynamic Pipeline Paradigm (DPP)__ 
                 proposed in this paper [DPP](https://biblioteca.sistedes.es/articulo/the-dynamic-pipeline-paradigm/).
diff --git a/src/DynamicPipeline.hs b/src/DynamicPipeline.hs
--- a/src/DynamicPipeline.hs
+++ b/src/DynamicPipeline.hs
@@ -57,6 +57,14 @@
 -- program = 'runDP' $ 'mkDP' @DPExample source\' generator\' sink\'
 -- @
 --
+-- Some visual representation of /DP/ and how this is happening under the hood
+--
+-- @
+-- 'Source' >> 'Filter'_1(runStateT $ actor_1 >> actor_2 >> ... actor_n) ..... >> 'Generator'  >> 'Sink'
+--    |            |                                                                  |              |   
+--  Async        Async                                                              Async          Async      
+-- @
+--
 module DynamicPipeline 
     ( -- * DP Flow Grammar #grammar#
       -- $grammar
