remove specific range

This commit is contained in:
Kat Marchán 2021-09-01 20:59:17 -07:00
parent c11ac24799
commit 9c28f099a2
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 4 additions and 5 deletions

View File

@ -243,11 +243,10 @@ It's up to individual implementations to determine how to represent KDL
numbers.
Implementations MUST support number values representable as IEEE754 floating
point numbers. That is, all implementations must support at least the numbers
between `-(2^53 - 1)` and `2^53 - 1`. Larger or smaller values MAY error, or
be represented as `Infinity`, or `NaN`, or any other value of the
implementation's choosing. If you want to reliably represent numbers outside
of this range, use the `string` type to represent them.
point numbers. Larger or smaller values MAY error, or be represented as
`Infinity`, or `NaN`, or any other value of the implementation's choosing. If
you want to reliably represent numbers outside of this range, use the `string`
type to represent them.
There are four syntaxes for Numbers: Decimal, Hexadecimal, Octal, and Binary.