From be36de09f28d42be7a69bc734f5a6d6dc9635930 Mon Sep 17 00:00:00 2001 From: Gusty <1261319+gusty@users.noreply.github.com> Date: Sun, 10 Jul 2022 08:20:53 +0200 Subject: [PATCH] Remove more code from docs --- docsrc/content/abstraction-monad.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.