README.md in prezzo-0.5.0 vs README.md in prezzo-0.5.1
- old
+ new
@@ -164,11 +164,11 @@
explain_with :base_fare
explain_with :price_per_distance
end
```
-#### ` explain_with` with the `resursive: false` option
+#### ` explain_with` with the `recursive: false` option
```ruby
class FooCalculator
include Prezzo::Calculator
include Prezzo::Explainable
@@ -193,10 +193,10 @@
include Prezzo::Composable
include Prezzo::Explainable
composed_by foo: FooCalculator
- explain_with :foo, resursive: false
+ explain_with :foo, recursive: false
def calculate
foo + 5
end
end