From 5828620d47b3100e30da280442946e02c5eca18d Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 7 Nov 2020 15:58:52 +0800 Subject: [PATCH] uint and uint64 is Ordinal type since nim 1.0.0 (#15873) --- doc/manual.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/manual.rst b/doc/manual.rst index 4e5b861b19..fa28582a74 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -883,9 +883,7 @@ Ordinal types have the following characteristics: than the largest value produces a panic or a static error. Integers, bool, characters, and enumeration types (and subranges of these -types) belong to ordinal types. For reasons of simplicity of implementation -the types ``uint`` and ``uint64`` are not ordinal types. (This will be changed -in later versions of the language.) +types) belong to ordinal types. A distinct type is an ordinal type if its base type is an ordinal type.