aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authoruberlaufer <sebewu@gmail.com>2016-03-11 03:53:13 +0800
committeruberlaufer <sebewu@gmail.com>2016-03-11 03:53:13 +0800
commitec3800b28e0dac5a13710d32d8f8fca7a527c563 (patch)
treec0a1b417ea5fca46a72c6fbd83498fa24243ca00 /docs
parentac03a08bec99b71955c5fa356793efe678de00cf (diff)
downloaddexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar.gz
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar.bz2
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar.lz
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar.xz
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.tar.zst
dexon-solidity-ec3800b28e0dac5a13710d32d8f8fca7a527c563.zip
shortened lines to 79
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 8a7b3cf2..fb9472a3 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -4,7 +4,11 @@
Contracts
##########
-Contracts in Solidity are what classes are in object oriented languages. They contain persistent data in state variables and functions that can modify these variables. Calling a function on a different contract (instance) will perform an EVM function call and thus switch the context such that state variables are inaccessible.
+Contracts in Solidity are what classes are in object oriented languages. They
+contain persistent data in state variables and functions that can modify these
+variables. Calling a function on a different contract (instance) will perform
+an EVM function call and thus switch the context such that state variables are
+inaccessible.
.. index:: ! contract;creation