summaryrefslogtreecommitdiff
path: root/docs/reference
diff options
context:
space:
mode:
authorRaik Rohde <64754924+Sett17@users.noreply.github.com>2023-08-08 23:53:33 +0200
committerGitHub <noreply@github.com>2023-08-08 23:53:33 +0200
commit88bcb8769a07d1bad57b77fa9443b598fd1a6b61 (patch)
treefb645a06a65d7422530cd3301d896baafcbab657 /docs/reference
parent1e21fac2cee92fdc2579f0efd5437f8733b242f0 (diff)
fix(docs): correct function name in types.md (#1894)
Corrected the function name from `float` to `int` in the documentation.
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/types.md b/docs/reference/types.md
index 429d41c2..3979a454 100644
--- a/docs/reference/types.md
+++ b/docs/reference/types.md
@@ -46,7 +46,7 @@ integers, integers cannot be smaller than `{-9223372036854775808}` or larger tha
The number can also be specified as hexadecimal, octal, or binary by starting it
with a zero followed by either `x`, `o`, or `b`.
-You can convert a value to an integer with the [`float`]($func/float) function.
+You can convert a value to an integer with the [`int`]($func/int) function.
## Example
```example