From: Ben Ford Date: Mon, 14 Sep 2015 18:25:38 +0000 (-0700) Subject: Clarify what an empty intersection looks like. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=169f8af506d4cd8299e847236632fd8511928a03;p=puppet-stdlib.git Clarify what an empty intersection looks like. --- diff --git a/lib/puppet/parser/functions/intersection.rb b/lib/puppet/parser/functions/intersection.rb index 48f02e9..bfbb4ba 100644 --- a/lib/puppet/parser/functions/intersection.rb +++ b/lib/puppet/parser/functions/intersection.rb @@ -4,13 +4,13 @@ module Puppet::Parser::Functions newfunction(:intersection, :type => :rvalue, :doc => <<-EOS -This function returns an array an intersection of two. +This function returns an array of the intersection of two. *Examples:* - intersection(["a","b","c"],["b","c","d"]) + intersection(["a","b","c"],["b","c","d"]) # returns ["b","c"] + intersection(["a","b","c"],[1,2,3,4]) # returns [] (true, when evaluated as a Boolean) -Would return: ["b","c"] EOS ) do |arguments|