From 49fcdabf0f08085a3095baca56ba5c80cc1ae137 Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 23 Oct 2021 20:45:20 +1000 Subject: [PATCH] Update DredgeFramework.module.fs --- DredgeFramework.module.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DredgeFramework.module.fs b/DredgeFramework.module.fs index 88e7cbe..5c20022 100644 --- a/DredgeFramework.module.fs +++ b/DredgeFramework.module.fs @@ -14,7 +14,7 @@ open FSharp.Reflection open Thoth.Json.Net -let (|?) lhs rhs = (if lhs = null then rhs else lhs) +let (|?) lhs rhs = if lhs = null then rhs else lhs let map list = list |> Map.ofList