aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authoruberlaufer <sebewu@gmail.com>2016-03-11 02:12:16 +0800
committeruberlaufer <sebewu@gmail.com>2016-03-11 02:12:16 +0800
commitac03a08bec99b71955c5fa356793efe678de00cf (patch)
tree2c0c0b6e63c1ca8ebe533f4fee833eb6b9007550 /docs
parent34d714f75846a55eac819818573499b0fd59a85b (diff)
downloaddexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar.gz
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar.bz2
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar.lz
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar.xz
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.tar.zst
dexon-solidity-ac03a08bec99b71955c5fa356793efe678de00cf.zip
Update contracts.rst
minor grammar and spelling corrections
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 691da7fe..8a7b3cf2 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -4,11 +4,7 @@
Contracts
##########
-Contracts in Solidity what classes are in object oriented languages.
-They 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