From: Krzysztof Wilczynski Date: Sat, 30 Apr 2011 01:45:36 +0000 (+0100) Subject: Small change to code formatting. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4b2a0a9e1f214085de5d9d1820ed5c94cb26325b;p=puppet-stdlib.git Small change to code formatting. Signed-off-by: Krzysztof Wilczynski --- diff --git a/str2bool.rb b/str2bool.rb index 5a52f25..f3a6d6c 100644 --- a/str2bool.rb +++ b/str2bool.rb @@ -23,11 +23,10 @@ module Puppet::Parser::Functions # This is how undef looks like in Puppet ... # We yield false in this case. # - when /^$/, '' then false - when /^(1|t|y|true|yes)$/ then true - when /^(0|f|n|false|no)$/ then false - # This is not likely to happen ... - when /^(undef|undefined)$/ then false + when /^$/, '' then false # Empty string will be false ... + when /^(1|t|y|true|yes)$/ then true + when /^(0|f|n|false|no)$/ then false + when /^(undef|undefined)$/ then false # This is not likely to happen ... else raise(Puppet::ParseError, 'str2bool(): Unknown type of boolean given') end