Update docs/Formula-Cookbook.md

Co-authored-by: Nanda H Krishna <me@nandahkrishna.com>
This commit is contained in:
Sean Molenaar 2022-02-18 18:10:06 +01:00 committed by GitHub
parent 9c5c0d1afe
commit 1d742d243b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -822,7 +822,7 @@ If a service needs to run at certain times, use `run_type :cron` and specify a t
```ruby ```ruby
service do service do
run [opt_bin/"beanstalkd", "test"] run [opt_bin/"beanstalkd", "test"]
run_type :interval run_type :cron
cron "5 * * * *" cron "5 * * * *"
end end
``` ```