summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-04-19 14:27:42 -0700
committerGitHub <noreply@github.com>2019-04-19 14:27:42 -0700
commit505bd0d47088ef16bc5b444da812f8c964b01f56 (patch)
tree3e5938ca496b6d9d82625c50111062167f3bd3c7
parenta74ad86809b2da0ef69bea1f08464f5ef7de2663 (diff)
parent6dde0b1c8645ed2cac9cff9ec7c3e340aa63ca4f (diff)
downloadmixlib-shellout-505bd0d47088ef16bc5b444da812f8c964b01f56.tar.gz
Merge pull request #178 from martinisoft/martinisoft/fix_readme
Misnamed parameter in README
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 368c113..45ebedd 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ In addition to the command to run there are other options that can be set to cha
Run a command as the `www` user with no extra ENV settings from `/tmp` with a 1s timeout
```ruby
- cmd = Mixlib::ShellOut.new("apachectl", "start", :user => 'www', :env => nil, :cwd => '/tmp', :timeout => 1)
+ cmd = Mixlib::ShellOut.new("apachectl", "start", :user => 'www', :environment => nil, :cwd => '/tmp', :timeout => 1)
cmd.run_command # etc.
```