From 4a678d0c9b5ace36410e8abb0cfe8f6505d3379a Mon Sep 17 00:00:00 2001 From: haodeon <31973188+haodeon@users.noreply.github.com> Date: Sun, 31 Mar 2024 01:14:46 +1300 Subject: [PATCH] fix: inputListFromT1 'a to 'b --- sdk/Pulumi.FSharp/Library.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/Pulumi.FSharp/Library.fs b/sdk/Pulumi.FSharp/Library.fs index 6eb0ff45..d2e6e9b1 100644 --- a/sdk/Pulumi.FSharp/Library.fs +++ b/sdk/Pulumi.FSharp/Library.fs @@ -57,7 +57,7 @@ module Ops = /// /// Wraps a collection of second types into an InputList{Union{'a,'b}} /// - let inputListFromT1<'a> (items: seq<'a>) = + let inputListFromT1<'b> (items: seq<'b>) = items |> Seq.map Union.FromT1 |> toInputList ///