Use non_strict in example
diff --git a/README.md b/README.md
index b77e755..36bccf8 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@
 
 ```erl
 Eshell V5.8.4  (abort with ^G)
-1> meck:new(dog).
+1> meck:new(dog, [non_strict]). % non_strict is used to create modules that don't exist
 ok
 2> meck:expect(dog, bark, fun() -> "Woof!" end).
 ok