Skip to content

Commit

Permalink
fix typo (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
askazakov committed May 11, 2024
1 parent 94d7c28 commit 757382b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ApprovalTests/Core/IApprover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public interface IApprovalApprover
/// Should save the received resource and compare.
/// </summary>
/// <remarks>
/// Note: This is part 1 of a 2 part call : if (Approve()) {Fail()}
/// Note: This is part 1 of a 2 part call : if (!Approve()) {Fail()}
/// To allow for the reporter to interject and approve in the interim
/// </remarks>
/// <returns> true if Matching, false if not</returns>
Expand All @@ -19,7 +19,7 @@ public interface IApprovalApprover
/// Usually throws an some sort of Exception
/// </summary>
/// <remarks>
/// Note: This is part 1 of a 2 part call : if (Approve()) {Fail()}
/// Note: This is part 2 of a 2 part call : if (!Approve()) {Fail()}
/// To allow for the reporter to interject and approve in the interim
/// </remarks>
void Fail();
Expand Down

0 comments on commit 757382b

Please sign in to comment.