From 757382b65e8b6a51b5c3dbbb7de763b1c8f22ce5 Mon Sep 17 00:00:00 2001 From: askazakov Date: Sat, 11 May 2024 11:27:53 +0300 Subject: [PATCH] fix typo (#751) --- src/ApprovalTests/Core/IApprover.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ApprovalTests/Core/IApprover.cs b/src/ApprovalTests/Core/IApprover.cs index ffafd9af..54880d21 100644 --- a/src/ApprovalTests/Core/IApprover.cs +++ b/src/ApprovalTests/Core/IApprover.cs @@ -7,7 +7,7 @@ public interface IApprovalApprover /// Should save the received resource and compare. /// /// - /// 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 /// /// true if Matching, false if not @@ -19,7 +19,7 @@ public interface IApprovalApprover /// Usually throws an some sort of Exception /// /// - /// 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 /// void Fail();