From 869b08d056efcabe790ef2730398bc0b6acba00f Mon Sep 17 00:00:00 2001 From: loulzor Date: Wed, 30 Jul 2025 15:04:20 +0200 Subject: [PATCH] Update numeric-functions.md The example for hexadecimal number did not show the correct result, the "0x" was still present --- docs/numeric-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/numeric-functions.md b/docs/numeric-functions.md index 422cdc87..cf4ae81a 100644 --- a/docs/numeric-functions.md +++ b/docs/numeric-functions.md @@ -18,7 +18,7 @@ If `arg` is not specified (i.e. this function is invoked with no arguments), the __Examples__ - `$number("5")` => `5` -- `$number("0x12")` => `0x18` +- `$number("0x12")` => `18` - `["1", "2", "3", "4", "5"].$number()` => `[1, 2, 3, 4, 5]`