diff options
author | chriseth <c@ethdev.com> | 2016-05-07 01:03:28 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-05-07 01:03:28 +0800 |
commit | 9e36bdda8a9552f1885e0a63a85db588623b39b2 (patch) | |
tree | 212d5c4d91481ead4d223eb6f7bfc4df1c7e8d02 /docs/types.rst | |
parent | 1b7e2d3068a8870b6d5ebb231cb611d01b4adfc8 (diff) | |
parent | 7f940e498e99346e7d9afa47e773dcd7ea9ebd18 (diff) | |
download | dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.gz dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.zst dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.zip |
Merge pull request #541 from Denton-L/develop
Minor Documentation Changes
Diffstat (limited to 'docs/types.rst')
-rw-r--r-- | docs/types.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/types.rst b/docs/types.rst index 187f62c1..0ec57afc 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -43,7 +43,7 @@ The operators `||` and `&&` apply the common short-circuiting rules. This means Integers -------- -`int•` / `uint•`: Signed and unsigned integers of various sizes. Keywords `uint8` to `uint256` in steps of `8` (unsigned of 8 up to 256 bits) and `int8` to `int256`. `uint` and `int` are aliases for `uint256` and `int256`, respectively. +`int` / `uint`: Signed and unsigned integers of various sizes. Keywords `uint8` to `uint256` in steps of `8` (unsigned of 8 up to 256 bits) and `int8` to `int256`. `uint` and `int` are aliases for `uint256` and `int256`, respectively. Operators: @@ -59,7 +59,7 @@ operators are :ref:`literals<integer_literals>` (or literal expressions). Address ------- -`address`: Holds a 20 byte value (size of an Ethereum address). Address types also have members(see [Functions on addresses](#functions-on-addresses)) and serve as base for all contracts. +`address`: Holds a 20 byte value (size of an Ethereum address). Address types also have members and serve as base for all contracts. Operators: @@ -153,7 +153,7 @@ It is even possible to temporarily exceed the maximum of 256 bits as long as onl String Literals --------------- -String Literals are written with double quotes (`"abc"`). As with integer literals, their type can vary, but they are implicitly convertible to `bytes•` if they fit, to `bytes` and to `string`. +String Literals are written with double quotes (`"abc"`). As with integer literals, their type can vary, but they are implicitly convertible to `bytes` if they fit, to `bytes` and to `string`. .. index:: enum |