aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-05-06 02:11:40 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-05-06 02:28:05 +0800
commit4de0a9556cf4c884c194d1ac42aa968f42ecd9ea (patch)
treec7c2d83d65cc6abd4f033ff1fe8af563f5dc0005 /docs
parent6c3e78a3d842ad0bbb9ab73010df8507ccf09047 (diff)
downloaddexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar.gz
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar.bz2
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar.lz
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar.xz
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.tar.zst
dexon-solidity-4de0a9556cf4c884c194d1ac42aa968f42ecd9ea.zip
Removed bullet characters from types
Diffstat (limited to 'docs')
-rw-r--r--docs/types.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 187f62c1..33018edd 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:
@@ -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