From 241db3cc2d11d87aad3847b4d546700e8b13d2a7 Mon Sep 17 00:00:00 2001 From: Alfonso Uceda Date: Tue, 11 Mar 2025 10:37:51 +0100 Subject: [PATCH] Invocation Recording example is corrected in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f59daa1..9362c7f 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ end e = Example.new e.some_dependency.some_method -e.invoked?(:some_method) #=> true +e.some_dependency.invoked?(:some_method) #=> true ``` Invocation recording can be disabled using the dependency declaration's `record` parameter.