packages feed

haphviz 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+6/−1 lines, 2 files

Files

haphviz.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                haphviz-version:             0.1.0.0+version:             0.1.0.1 synopsis:            Graphviz code generation with Haskell description:         Graphviz code generation with Haskell author:              Tom Sydney Kerckhove
src/Text/Dot/Gen.hs view
@@ -15,6 +15,7 @@  import           Text.Dot.Types.Internal +import           Control.Monad           (void) import           Data.Monoid             (Monoid (..), (<>))  import           Data.Text               (Text)@@ -185,6 +186,10 @@ -- | Cluster cluster :: Text -> DotGen () -> DotGen GraphName cluster name = subgraph $ "cluster_" <> name++-- | Cluster, discarding the graph name+cluster_ :: Text -> DotGen () -> DotGen ()+cluster_ name subgraph = void $ cluster name subgraph  -- * Miscelaneous -- ** Rankdir