aboutsummaryrefslogtreecommitdiffstats
path: root/lib/shell.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-19 05:43:26 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-19 05:43:26 +0000
commit690be750cbf107446438249a868e081e3ee3ff09 (patch)
treeecf7b375a4a12ab31233b95894fffdac83892650 /lib/shell.rb
parentd1ab866d4ab3508c596a48226deb38925f799a88 (diff)
downloadruby-690be750cbf107446438249a868e081e3ee3ff09.tar.gz
* lib/cgi/html.rb: fix typo by @windwiny [fix GH-506]
* lib/net/http.rb: ditto * lib/rexml/attribute.rb: ditto * lib/rexml/element.rb: ditto * lib/rexml/source.rb: ditto * lib/rexml/streamlistener.rb: ditto * lib/rss/xmlparser.rb: ditto * lib/rubygems/commands/generate_index_command.rb: ditto * lib/shell.rb: ditto * lib/uri/common.rb:ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell.rb')
-rw-r--r--lib/shell.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.rb b/lib/shell.rb
index 76af3b6f86..928073e144 100644
--- a/lib/shell.rb
+++ b/lib/shell.rb
@@ -37,7 +37,7 @@ require "shell/process-controller"
# sh.cd("shell-test-1") # Change to the /tmp/shell-test-1 directory
# for dir in ["dir1", "dir3", "dir5"]
# if !sh.exists?(dir)
-# sh.mkdir dir # make dir if it doesnt' already exist
+# sh.mkdir dir # make dir if it doesn't already exist
# sh.cd(dir) do
# # change to the `dir` directory
# f = sh.open("tmpFile", "w") # open a new file in write mode