From 4b2a0a9e1f214085de5d9d1820ed5c94cb26325b Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Sat, 30 Apr 2011 02:45:36 +0100 Subject: Small change to code formatting. Signed-off-by: Krzysztof Wilczynski --- str2bool.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 -- cgit v1.2.3