From 1225818d802639fd4be26ceb4fba5d86f63e7c17 Mon Sep 17 00:00:00 2001 From: Pete Doherty Date: Tue, 26 Mar 2024 13:12:32 -0400 Subject: [PATCH] Remove redundant "a" from README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95b7964..3156a94 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ impl MyStructToMock { /* methods to mock */ } mod client { // #[faux::create] makes a struct mockable and // generates an associated `faux` function - // e.g., `UserClient::faux()` will create a a mock `UserClient` instance + // e.g., `UserClient::faux()` will create a mock `UserClient` instance #[faux::create] pub struct UserClient { /* data of the client */ }