README.md in lite-service-1.0.2 vs README.md in lite-service-1.0.3
- old
+ new
@@ -65,14 +65,19 @@
service = SearchMovies.new('Toy Story')
service.called? #=> false
service.call #=> { 'fingerprint_1' => [ 'Toy Story 1', ... ] }
service.called? #=> true
-# or
+# - or -
service = SearchMovies.call('Toy Story')
service.called? #=> true
service.call #=> { 'fingerprint_1' => [ 'Toy Story 1', ... ] }
+
+# - or -
+
+# Use full when you are not using the Errors mixin.
+SearchMovies.run('Toy Story') #=> { 'fingerprint_1' => [ 'Toy Story 1', ... ] }
```
**Result**
```ruby