Skip to content

Commit

Permalink
Simplify the Parallel example
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatol Broder committed Jan 24, 2015
1 parent 41558f4 commit b04ae08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ You can similarly pass in a `:hydra` option with a hash configuration for Hydra.
[Parallel](https://github.com/grosser/parallel) is being used to speed things up a bit. You can pass in any of its options with the options "namespace" `:parallel`. For example:

``` ruby
HTML::Proofer.new("out/", {:ext => ".htm", :verbose => true, :ssl_verifyhost => 2, :parallel => { :in_processes => 3} })
HTML::Proofer.new("out/", {:ext => ".htm", :parallel => { :in_processes => 3} })
```

`:in_processes => 3` will be passed into Parallel as a configuration option.
Expand Down

1 comment on commit b04ae08

@gjtorikian
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops! Thank you!

Please sign in to comment.