Corrected spacing to four spaces

This commit is contained in:
Denton Liu 2016-05-11 15:53:45 -04:00
parent bdb48b8567
commit 14bd009eb6

View File

@ -110,9 +110,11 @@ Solidity internally allows tuple types, i.e. a list of objects of potentially di
contract C {
uint[] data;
function f() returns (uint, bool, uint) {
return (7, true, 2);
}
function g() {
// Declares and assigns the variables. Specifying the type explicitly is not possible.
var (x, b, y) = f();