Skip to content

Commit 675f866

Browse files
committed
fix(UpdateOpProcessor): use correct interface
1 parent f3ef12f commit 675f866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonApiDotNetCore/Services/Operations/Processors/UpdateOpProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ IContextGraph contextGraph
2727
{ }
2828
}
2929

30-
public class UpdateOpProcessor<T, TId> : ICreateOpProcessor<T, TId>
30+
public class UpdateOpProcessor<T, TId> : IUpdateOpProcessor<T, TId>
3131
where T : class, IIdentifiable<TId>
3232
{
3333
private readonly IUpdateService<T, TId> _service;

0 commit comments

Comments
 (0)