summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-05-20 20:00:32 -0700
committerGitHub <noreply@github.com>2020-05-20 20:00:32 -0700
commit963f528e1366626f7fcbfdc4ffc752ae0f69d627 (patch)
tree289cc250f59acc761aa3d25f9dd7331c01fa69c8
parent9b2ee29d50a44f309de456765f6fc76d398e7897 (diff)
parentd3a211c037017c994d519edcccc450d155d4249f (diff)
downloadmixlib-shellout-963f528e1366626f7fcbfdc4ffc752ae0f69d627.tar.gz
Merge pull request #205 from phiggins/minor-doc-fixes
Minor doc fixes
-rw-r--r--README.md2
-rw-r--r--lib/mixlib/shellout.rb2
2 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 69bbbf2..9299557 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,6 @@
Provides a simplified interface to shelling out while still collecting both standard out and standard error and providing full control over environment, working directory, uid, gid, etc.
-No means for passing input to the subprocess is provided.
-
## Example
### Simple Shellout
Invoke find(1) to search for .rb files:
diff --git a/lib/mixlib/shellout.rb b/lib/mixlib/shellout.rb
index f366956..b44e0aa 100644
--- a/lib/mixlib/shellout.rb
+++ b/lib/mixlib/shellout.rb
@@ -65,7 +65,7 @@ module Mixlib
# as the subprocess is running.
attr_accessor :live_stderr
- # ShellOut will push data from :input down the stdin of the subprocss.
+ # ShellOut will push data from :input down the stdin of the subprocess.
# Normally set via options passed to new.
# Default: nil
attr_accessor :input