Skip to content

Commit

Permalink
[DROOLS-7490] minor fix to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofusco committed Aug 9, 2023
1 parent fb7e4da commit 6b1dabc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rule "Infer Adult"
when
$p : Person(age >= 18)
then
insert(new IsAdult($p))
insert(new IsAdult($p));
end
----

Expand Down Expand Up @@ -63,14 +63,14 @@ rule "Infer Child"
when
$p : Person(age < 18)
then
insertLogical(new IsChild($p))
insertLogical(new IsChild($p));
end
rule "Infer Adult"
when
$p : Person(age >= 18)
then
insertLogical(new IsAdult($p))
insertLogical(new IsAdult($p));
end
----

Expand Down

0 comments on commit 6b1dabc

Please sign in to comment.