From 3a7e665dbfe0d823cf54bc5718fe8b539de0ba68 Mon Sep 17 00:00:00 2001 From: cmahnke Date: Tue, 13 Feb 2024 15:30:29 +0100 Subject: [PATCH] Fix typos --- content/en/functions/cast/ToInt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/functions/cast/ToInt.md b/content/en/functions/cast/ToInt.md index f82f029d5..c4bb10268 100644 --- a/content/en/functions/cast/ToInt.md +++ b/content/en/functions/cast/ToInt.md @@ -8,7 +8,7 @@ action: - functions/cast/ToFloat - functions/cast/ToString returnType: int - signatures: [cast/ToInt INPUT] + signatures: [cast.ToInt INPUT] aliases: [/functions/int] --- @@ -49,5 +49,5 @@ With a hexadecimal (base 16) input: {{% note %}} Values with a leading zero are octal (base 8). When casting a string representation of a decimal (base 10) number, remove leading zeros: -`{{ strings/TrimLeft "0" "0011" | int }} → 11` +`{{ strings.TrimLeft "0" "0011" | int }} → 11` {{% /note %}}