summaryrefslogtreecommitdiff
path: root/lib/shellwords.rb
diff options
context:
space:
mode:
-rw-r--r--lib/shellwords.rb2
1 files changed, 1 insertions, 1 deletions
@@ -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"
# system("cat " + argv)
#
# Shellwords also comes with a core extension for Array, Array#shelljoin.