aboutsummaryrefslogtreecommitdiffstats
path: root/docs/miscellaneous.rst
diff options
context:
space:
mode:
authorChristian Parpart <christian@ethereum.org>2018-06-18 21:58:10 +0800
committerChristian Parpart <christian@ethereum.org>2018-07-03 16:53:09 +0800
commit133fbdbf1874da9bc6b5911430f34a30ccf8db1f (patch)
tree784288777ed6af5f7007a259bf92aa352caa173c /docs/miscellaneous.rst
parent1486d215b9c7f94831784ded50342897b65477c9 (diff)
downloaddexon-solidity-133fbdbf1874da9bc6b5911430f34a30ccf8db1f.tar.gz
dexon-solidity-133fbdbf1874da9bc6b5911430f34a30ccf8db1f.tar.zst
dexon-solidity-133fbdbf1874da9bc6b5911430f34a30ccf8db1f.zip
documentation: adjustments to not use the "var" keyword
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r--docs/miscellaneous.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 30ece7e1..d324b77a 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -157,7 +157,7 @@ These steps are applied to each basic block and the newly generated code is used
::
- var x = 7;
+ uint x = 7;
data[7] = 9;
if (data[x] != x + 2)
return 2;