README.md in monte_carlo-0.0.4 vs README.md in monte_carlo-0.0.5
- old
+ new
@@ -40,17 +40,17 @@
# Run your experiment and get your results
results = experiment.run
```
-Another options is to use the configuration DSL, like so:
+Another option is to use the configuration DSL, like so:
```ruby
# Create an experiment and pass it a configuration block
experiment = MonteCarlo::Experiment.new do
times 1000000
sample_method { rand }
- compuation { |sample| sample > 0.5 }
+ computation { |sample| sample > 0.5 }
end
# And run it normally
results = experiment.run
```