diff options
author | Denton Liu <Denton-L@users.noreply.github.com> | 2016-05-04 21:54:49 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 02:01:50 +0800 |
commit | 768b7786159619479e0dcb494f156d567c08eea0 (patch) | |
tree | 8de848697f326b7ded260b7086f28c9390d70bc3 /docs/contracts.rst | |
parent | 30284487f2178c605fd5f414254803d3370341ef (diff) | |
download | dexon-solidity-768b7786159619479e0dcb494f156d567c08eea0.tar.gz dexon-solidity-768b7786159619479e0dcb494f156d567c08eea0.tar.zst dexon-solidity-768b7786159619479e0dcb494f156d567c08eea0.zip |
Update contracts.rst
Corrected grammar error
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 9923b1d2..ea026c81 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -341,7 +341,7 @@ possible. // This contract rejects any Ether sent to it. It is good // practise to include such a function for every contract - // in order not to loose Ether. + // in order not to lose Ether. contract Rejector { function() { throw; } } |