Fix typo: run_all should be run_on

This commit is contained in:
Jean Mertz 2011-11-14 10:56:36 +01:00
parent dee5298533
commit 2ad80d4aeb

View File

@ -2,7 +2,7 @@ It's a [Guard](http://github.com/guard/guard) for the [Rocco](http://github.com/
``` ruby
# default values
guard 'rocco', :run_all => [:start, :change], :dir => 'doc', :stylesheet => 'http://jashkenas.github.com/docco/resources/docco.css' do
guard 'rocco', :run_on => [:start, :change], :dir => 'doc', :stylesheet => 'http://jashkenas.github.com/docco/resources/docco.css' do
watch(%r{^app/.*\.(rb|coffee)$})
watch(%r{^lib/.*\.rb$})
end