From 80ee7c2b362c6b559d821723855eeb82c8b5f5a8 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 27 Jul 2017 14:30:56 +0100 Subject: Fix ABI for fixed types --- docs/abi-spec.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index 7a1a9af0..a9110a0a 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -44,7 +44,7 @@ The following elementary types exist: - `bool`: equivalent to `uint8` restricted to the values 0 and 1 -- `fixedx`: signed fixed-point decimal number of `M` bits, `0 < M <= 256`, `M % 8 ==0`, and `0 < N <= 80`, which denotes the value `v` as `v / (10 ** N)`. +- `fixedx`: signed fixed-point decimal number of `M` bits, `8 <= M <= 256`, `M % 8 ==0`, and `0 < N <= 80`, which denotes the value `v` as `v / (10 ** N)`. - `ufixedx`: unsigned variant of `fixedx`. -- cgit