From 2c666dc108b1b15ffdacf4242e1aad23f082b041 Mon Sep 17 00:00:00 2001 From: ewdlop Date: Sat, 23 Mar 2024 18:29:23 -0400 Subject: [PATCH] change the return type of PatchOperationListBuilder to PatchOperationList --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 98f90c8..5d96f58 100644 --- a/Program.cs +++ b/Program.cs @@ -459,6 +459,6 @@ public PatchOperationListBuilder WithSet(object value, Func? return this; } - public List Build() => _patchOperations; + public PatchOperationList Build() => _patchOperations; } } \ No newline at end of file