Fix one README example that were broken by https://github.com/dart-lang/mockito/commit/1dcd8225e9014b17ba256d7fa1d056f339189630
Also sync the executable version of it with the README.

Fixes https://github.com/dart-lang/mockito/issues/744

PiperOrigin-RevId: 623800048
diff --git a/README.md b/README.md
index 0189d40..a9fdfac 100644
--- a/README.md
+++ b/README.md
@@ -170,7 +170,10 @@
 mock methods:
 
 ```dart
-// You can use plain arguments themselves
+// You can use `any`
+when(cat.eatFood(any)).thenReturn(false);
+
+// ... or plain arguments themselves
 when(cat.eatFood("fish")).thenReturn(true);
 
 // ... including collections
@@ -178,7 +181,6 @@
 
 // ... or matchers
 when(cat.eatFood(argThat(startsWith("dry")))).thenReturn(false);
-when(cat.eatFood(any)).thenReturn(false);
 
 // ... or mix arguments with matchers
 when(cat.eatFood(argThat(startsWith("dry")), hungry: true)).thenReturn(true);
diff --git a/example/example.dart b/example/example.dart
index 1439ed2..56270cd 100644
--- a/example/example.dart
+++ b/example/example.dart
@@ -88,8 +88,11 @@
   });
 
   test('Argument matchers', () {
-    // You can use plain arguments themselves
-    when(cat.eatFood('fish')).thenReturn(true);
+    // You can use `any`
+    when(cat.eatFood(any)).thenReturn(false);
+
+    // ... or plain arguments themselves
+    when(cat.eatFood("fish")).thenReturn(true);
 
     // ... including collections
     when(cat.walk(['roof', 'tree'])).thenReturn(2);