Removed trailing space

This commit is contained in:
Denton Liu 2016-05-11 15:48:59 -04:00
parent bb62a8b3fd
commit bdb48b8567

View File

@ -51,7 +51,7 @@ all function arguments have to be copied to memory.
When calling functions When calling functions
of other contracts, the amount of Wei sent with the call and the gas can be specified:: of other contracts, the amount of Wei sent with the call and the gas can be specified::
contract InfoFeed { contract InfoFeed {
function info() returns (uint ret) { return 42; } function info() returns (uint ret) { return 42; }
} }