Skip to content

Commit

Permalink
Updated IVerifies.Verifiable method documentation code example
Browse files Browse the repository at this point in the history
  • Loading branch information
Asafima authored and kzu committed Feb 7, 2025
1 parent 3baf381 commit 70619e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Moq/Language/IVerifies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface IVerifies : IFluentInterface
/// <example>
/// The following example marks the expectation as verifiable:
/// <code>
/// mock.Expect(x => x.Execute("ping"))
/// mock.Setup(x => x.Execute("ping"))
/// .Returns(true)
/// .Verifiable();
/// </code>
Expand All @@ -35,7 +35,7 @@ public interface IVerifies : IFluentInterface
/// <example>
/// The following example marks the expectation as verifiable:
/// <code>
/// mock.Expect(x => x.Execute("ping"))
/// mock.Setup(x => x.Execute("ping"))
/// .Returns(true)
/// .Verifiable("Ping should be executed always!");
/// </code>
Expand Down

0 comments on commit 70619e4

Please sign in to comment.