diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-27 21:30:56 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-16 23:47:11 +0800 |
commit | 80ee7c2b362c6b559d821723855eeb82c8b5f5a8 (patch) | |
tree | 5df53fa9928930ee6e6f6ada520180a5ed84ef0e | |
parent | 80f83169b120eab72850842b4c6f39829989a0d8 (diff) | |
download | dexon-solidity-80ee7c2b362c6b559d821723855eeb82c8b5f5a8.tar.gz dexon-solidity-80ee7c2b362c6b559d821723855eeb82c8b5f5a8.tar.zst dexon-solidity-80ee7c2b362c6b559d821723855eeb82c8b5f5a8.zip |
Fix ABI for fixed types
-rw-r--r-- | docs/abi-spec.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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 -- `fixed<M>x<N>`: 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)`. +- `fixed<M>x<N>`: 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)`. - `ufixed<M>x<N>`: unsigned variant of `fixed<M>x<N>`. |