Browse Source

Rephrased logic explanation

Alois Mahdal (@azzgoat) 11 years ago
parent
commit
f86ef2726e
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lib/SugarTrail/Template/Master.pm

+ 2
- 2
lib/SugarTrail/Template/Master.pm View File

@@ -76,8 +76,8 @@ sub generate_slave {
76 76
             warnings    => []
77 77
         };
78 78
         # test against each condition from the pre-parsed condblock
79
-        # if any number of condition warnings is found, accept
80
-        # otherwise accept step unless a condition failed
79
+        # refuse step only in case all conditions passed without warnings,
80
+        # in all other cases (fail, warning), accept
81 81
         COND: foreach my $condstr (@{ $master_step->{conds} }) {
82 82
             my $c = SugarTrail::Template::Condition->new($condstr);
83 83
             my ($r, $w) = $c->match($args);