diff --git a/docsrc/content/abstraction-monad.fsx b/docsrc/content/abstraction-monad.fsx index 1e5aba513..7c93f3b8b 100644 --- a/docsrc/content/abstraction-monad.fsx +++ b/docsrc/content/abstraction-monad.fsx @@ -203,7 +203,7 @@ let askPassword = monad { // After getting used to monadic CEs it's natural // to feel the need to combine monads // (from https://stackoverflow.com/a/37900264 ) - +(* module CombineWriterWithResult = let divide5By = function @@ -223,7 +223,7 @@ module CombineWriterWithResult = return (x, y, z) } let (_, log) = ew |> ResultT.run |> Writer.run - +*) // You can also stack monad transformers.