From 4618b7f200c818efbee866d2d5ee176a57323a10 Mon Sep 17 00:00:00 2001 From: a_matsuda Date: Sat, 14 Dec 2013 18:26:59 +0000 Subject: [DOC] Fix output of Shellwords.escape() by @anatol [Fixes GH-483] * lib/shellwords.rb: Fix output of Shellwords.escape() https://github.com/ruby/ruby/pull/483 [ci-skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/shellwords.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/shellwords.rb b/lib/shellwords.rb index c3586d29fa..21b86ce894 100644 --- a/lib/shellwords.rb +++ b/lib/shellwords.rb @@ -33,7 +33,7 @@ # This method will escape the String for you to safely use with a Bourne shell. # # argv = Shellwords.escape("special's.txt") -# argv #=> "special\\s.txt" +# argv #=> "special\\'s.txt" # system("cat " + argv) # # Shellwords also comes with a core extension for Array, Array#shelljoin. -- cgit v1.2.3