Skip to content

Commit

Permalink
change the return type of PatchOperationListBuilder to PatchOperation…
Browse files Browse the repository at this point in the history
…List
  • Loading branch information
ewdlop committed Mar 23, 2024
1 parent 1c01360 commit 2c666dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,6 @@ public PatchOperationListBuilder WithSet(object value, Func<PropertyInfo, bool>?
return this;
}

public List<PatchOperation> Build() => _patchOperations;
public PatchOperationList Build() => _patchOperations;
}
}

0 comments on commit 2c666dc

Please sign in to comment.