summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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