From 1e325dd01698e9aea729acf32b942229029d384f Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 16 Oct 2015 12:28:00 +0200 Subject: [PATCH] Removed space. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d31c6083c8..921f73d5bc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Starting from version 0.1.6, multiple files are supported with automatic import var solc = require('solc'); var input = { 'lib.sol': 'library L { function f() returns (uint) { return 7; } }', - 'cont.sol': 'import "lib.sol"; contract x { function g() { L.f(); } }' + 'cont.sol': 'import "lib.sol"; contract x { function g() { L.f(); } }' }; var output = solc.compile({sources: input}, 1); for (var contractName in output.contracts)