Update contracts.rst

Corrected grammar error
This commit is contained in:
Denton Liu 2016-05-04 09:54:49 -04:00 committed by Denton Liu
parent 30284487f2
commit 768b778615

View File

@ -341,7 +341,7 @@ possible.
// This contract rejects any Ether sent to it. It is good // This contract rejects any Ether sent to it. It is good
// practise to include such a function for every contract // practise to include such a function for every contract
// in order not to loose Ether. // in order not to lose Ether.
contract Rejector { contract Rejector {
function() { throw; } function() { throw; }
} }