From 6b9acbe23fcb9576f0addd961306028a772f41ff Mon Sep 17 00:00:00 2001 From: Eric Kramer Date: Thu, 8 Jan 2026 16:47:53 -0500 Subject: [PATCH] Fix output in fraud detection example (Events) Since the facts are retracted when the first consequent executes only this first output line is generated. --- docs/py/reference.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/py/reference.md b/docs/py/reference.md index 9d976635..019a90cc 100644 --- a/docs/py/reference.md +++ b/docs/py/reference.md @@ -126,8 +126,7 @@ post('risk', {'t': 'purchase', 'location': 'CA'}) **Note:** *Using facts in the example above will produce the following output:* - -`Fraud detected -> US, CA` + `Fraud detected -> CA, US` *In the example both facts satisfy the first condition m.t == 'purchase' and each fact satisfies the second condition m.location != c.first.location in relation to the facts which satisfied the first.*