Skip to content

Commit

Permalink
Fix custom function docs (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-huff authored Oct 27, 2024
1 parent a68603a commit e9008f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/customization/custom_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ ExpressionConfiguration configuration =
Map.entry("MAX_VALUE", new MaxFunction()),
Map.entry("MIN_VALUE", new MinFunction()));

Expression expression = new Expression("MAX_VALUE(1,2,3) + MIN_VALUE(7,8,9)");
Expression expression = new Expression("MAX_VALUE(1,2,3) + MIN_VALUE(7,8,9)", configuration);
```

0 comments on commit e9008f6

Please sign in to comment.