]> gitweb.fluxo.info Git - puppet-stdlib.git/commitdiff
Docs: Remove author emails from stdlib functions
authornfagerlund <nick.fagerlund@gmail.com>
Wed, 17 Aug 2011 22:55:07 +0000 (15:55 -0700)
committernfagerlund <nick.fagerlund@gmail.com>
Thu, 18 Aug 2011 19:39:05 +0000 (12:39 -0700)
Author email addresses were included in the doc strings for some (but not all)
stdlib functions. This commit removes them in the interest of consistency.

lib/puppet/parser/functions/validate_bool.rb
lib/puppet/parser/functions/validate_hash.rb
lib/puppet/parser/functions/validate_re.rb

index 82a45fb13056448506aecdfe32e0e07762b4f5fa..62c1d888214910a764dd3b3cb3514e8232a4c147 100644 (file)
@@ -17,9 +17,6 @@ module Puppet::Parser::Functions
         validate_bool("true")
         validate_bool($some_array)
 
-    * Jeff McCune <jeff@puppetlabs.com>
-    * Dan Bode <dan@puppetlabs.com>
-
     ENDHEREDOC
 
     unless args.length > 0 then
index 1b1c854fbe653baf1e41c2f18b9fd923ec21f54f..9bdd543283d6a2111c235bafd1f9ac31df23b37a 100644 (file)
@@ -16,8 +16,6 @@ module Puppet::Parser::Functions
         $undefined = undef
         validate_hash($undefined)
 
-    * Jeff McCune <jeff@puppetlabs.com>
-
     ENDHEREDOC
 
     unless args.length > 0 then
index 9e61ef596b373e4467d938bfb9d832429c403907..8033ca3cf5a148dc3d9a7c8bd9a788ea9a2893a4 100644 (file)
@@ -17,8 +17,6 @@ module Puppet::Parser::Functions
 
         validate_re('one', [ '^two', '^three' ])
 
-    Jeff McCune <jeff@puppetlabs.com>
-
     ENDHEREDOC
     if args.length != 2 then
       raise Puppet::ParseError, ("validate_re(): wrong number of arguments (#{args.length}; must be 2)")