From f05bff5c0d0208b4909dfaa5ba03549952682314 Mon Sep 17 00:00:00 2001 From: "Textor Andreas (BCI/ESW17)" Date: Thu, 22 Feb 2024 07:00:36 +0100 Subject: [PATCH] Add missing minus sign --- documentation/modules/ROOT/pages/datatypes.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/modules/ROOT/pages/datatypes.adoc b/documentation/modules/ROOT/pages/datatypes.adoc index 4824db1..7b86d90 100644 --- a/documentation/modules/ROOT/pages/datatypes.adoc +++ b/documentation/modules/ROOT/pages/datatypes.adoc @@ -69,7 +69,7 @@ definition in the respective standards and an informative description of their v .12+| Limited-range integer numbers | `https://www.w3.org/TR/xmlschema11-2/#byte[xsd:byte]` | -128…+127 (8 bit) | -1, 0, 127 | {nok} | `https://www.w3.org/TR/xmlschema11-2/#short[xsd:short]` | -32768…+32767 (16 bit) | -1, 0, 32767 | {nok} -| `https://www.w3.org/TR/xmlschema11-2/#int[xsd:int]` | 2147483648…+2147483647 (32 bit) | -1, 0, 2147483647 | {nok} +| `https://www.w3.org/TR/xmlschema11-2/#int[xsd:int]` | -2147483648…+2147483647 (32 bit) | -1, 0, 2147483647 | {nok} | `https://www.w3.org/TR/xmlschema11-2/#long[xsd:long]` | -9223372036854775808…+9223372036854775807 (64 bit) | -1, 0, 9223372036854775807 | {nok} | `https://www.w3.org/TR/xmlschema11-2/#unsignedByte[xsd:unsignedByte]` | 0…255 (8 bit) | 0, 1, 255 | {nok} | `https://www.w3.org/TR/xmlschema11-2/#unsignedShort[xsd:unsignedShort]` | 0…65535 (16 bit) | 0, 1, 65535 | {nok}