Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gramli committed Mar 11, 2024
1 parent 71fbc23 commit 052ce5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ internal sealed class DeleteFavoriteCommandSpecificationHolder : ISpecificationH

public DeleteFavoriteCommandSpecificationHolder()
{
Specification<DeleteFavoriteCommand> addFavoriteCommandSpecification = s => s
Specification<DeleteFavoriteCommand> deleteFavoriteCommandSpecification = s => s
.Member(m => m.Id, r => r.NonNegative());

Specification = addFavoriteCommandSpecification;
Specification = deleteFavoriteCommandSpecification;
}
}
}

0 comments on commit 052ce5a

Please sign in to comment.