diff options
Diffstat (limited to 'docs/language-reference')
| -rw-r--r-- | docs/language-reference/04-types.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/language-reference/04-types.md b/docs/language-reference/04-types.md index e7344793c..d62af1763 100644 --- a/docs/language-reference/04-types.md +++ b/docs/language-reference/04-types.md @@ -43,7 +43,7 @@ All signed integers used two's complement representation. All arithmetic operations on integers (both signed and unsigned) wrap on overflow/underflow. All target platforms must support the `int` and `uint` types. -Specific target platforms may not support the other integer types. +Specific [target platforms](../target-compatibility.md) may not support the other integer types. All integer types are stored in memory with their natural size and alignment on all targets that support them. @@ -61,7 +61,7 @@ All floating-point types are laid out in memory using the matching IEEE 754 stan Target platforms may define their own rules for rounding, precision, denormals, infinities, and not-a-number values. All target platforms must support the `float` type. -Specific targets may not support the other floating-point types. +Specific [targets](../target-compatibility.md) may not support the other floating-point types. All floating-point types are stored in memory with their natural size and alignment on all targets that support them. |
