fix superscript (#127147)

This commit is contained in:
Charlotte Hoblik 2025-04-22 18:48:15 +02:00 committed by GitHub
parent bad35edcc4
commit 838bb0bbd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 15 additions and 15 deletions

View file

@ -28,10 +28,10 @@ The following primitive types are available. The corresponding reference type is
: 16-bit, unsigned, Unicode character. Range: [`0`, `65535`]. Default: `0` or `\u0000`.
`int` (`Integer`)
: 32-bit, signed, twos complement integer. Range: [`-2^31`, `2^31-1`]. Default: `0`.
: 32-bit, signed, twos complement integer. Range: [`-2`^`31`^, `2`^`31`^`-1`]. Default: `0`.
`long` (`Long`)
: 64-bit, signed, twos complement integer. Range: [`-2^63`, `2^63-1`]. Default: `0`.
: 64-bit, signed, twos complement integer. Range: [`-2`^`63`^, `2`^`63`^`-1`]. Default: `0`.
`float (`Float`)`
: 32-bit, signed, single-precision, IEEE 754 floating point number. Default `0.0`.