vendored/puppet/lib/puppet/functions/any.rb in bolt-0.20.3 vs vendored/puppet/lib/puppet/functions/any.rb in bolt-0.20.5

- old
+ new

@@ -1,6 +1,6 @@ -# Runs a [lambda](http://docs.puppetlabs.com/puppet/latest/reference/lang_lambdas.html) +# Runs a [lambda](https://puppet.com/docs/puppet/latest/lang_lambdas.html) # repeatedly using each value in a data structure until the lambda returns a "truthy" value which # makes the function return `true`, or if the end of the iteration is reached, false is returned. # # This function takes two mandatory arguments, in this order: # @@ -57,10 +57,10 @@ # ``` # # Would notice true as the index `2` is even and not a `String` # # For an general examples that demonstrates iteration, see the Puppet -# [iteration](https://docs.puppetlabs.com/puppet/latest/reference/lang_iteration.html) +# [iteration](https://puppet.com/docs/puppet/latest/lang_iteration.html) # documentation. # # @since 5.2.0 # Puppet::Functions.create_function(:any) do