Browse Source

Small indenting fix for bounty docs

Brett Sun 8 years ago
parent
commit
2ad88b59f6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/source/bounty.rst

+ 2 - 2
docs/source/bounty.rst

@@ -7,8 +7,8 @@ To create a bounty for your contract, inherit from the base `Bounty` contract an
 	import "./YourContract.sol";
 
 	contract YourBounty is Bounty {
-	function deployContract() internal returns(address) {
-	return new YourContract()
+	  function deployContract() internal returns(address) {
+	    return new YourContract()
 	  }
 	}