Skip to content

Commit 7cf5933

Browse files
authored
Merge pull request #4927 from FarmerChillax/fix-cel-doc-ref
fix cel doc ref
2 parents baa686b + 688eeab commit 7cf5933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-route-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Match deposits greater than $10,000:
271271
event.type == "deposit" && int(event.data.amount) > 10000
272272
```
273273
{{% alert title="Note" color="primary" %}}
274-
By default the numeric values ​​are written as double-precision floating-point. There are no automatic arithmetic conversions for numeric values. In this case, if `event.data.amount` is not cast as integer, the match is not performed. For more information, see the [CEL documentation](https://github.com/google/cel-spec/blob/master/doc/langdef).
274+
By default the numeric values ​​are written as double-precision floating-point. There are no automatic arithmetic conversions for numeric values. In this case, if `event.data.amount` is not cast as integer, the match is not performed. For more information, see the [CEL documentation](https://github.com/google/cel-spec/blob/master/doc/langdef.md).
275275
{{% /alert %}}
276276

277277
Match multiple versions of a message:

0 commit comments

Comments
 (0)