Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / shell_join.rb
index 0a037c1..e498f55 100644 (file)
@@ -5,10 +5,13 @@ require 'shellwords'
 #
 module Puppet::Parser::Functions
   newfunction(:shell_join, :type => :rvalue, :doc => <<-DOC
-    Builds a command line string from the given array of strings. Each array item is escaped for Bourne shell. All items are
-    then joined together, with a single space in between.
-
+    @summary
+    Builds a command line string from the given array of strings.
+    Each array item is escaped for Bourne shell. All items are then joined together, with a single space in between.
     This function behaves the same as ruby's Shellwords.shelljoin() function
+
+    @return
+      a command line string
   DOC
              ) do |arguments|