From adda07f546c91560b830e1af2bc8521fc51d1ea1 Mon Sep 17 00:00:00 2001 From: Landon Clipp Date: Mon, 24 Jan 2022 21:31:54 -0600 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6a2732c..73f3e324 100644 --- a/README.md +++ b/README.md @@ -262,7 +262,7 @@ Expecter Interfaces New in [v2.10.0](https://github.com/vektra/mockery/pull/396). -Mockery now supports an "expecter" interface which allows your tests to use type-safe methods. When enabled through the `with-expecter: True` mockery configuration, you can enter into the expecter interface by simply calling `.EXPECT()` on your mock object. +Mockery now supports an "expecter" interface which allows your tests to use type-safe methods to generate call expectations. When enabled through the `with-expecter: True` mockery configuration, you can enter into the expecter interface by simply calling `.EXPECT()` on your mock object. For example, given an interface such as ```go