Skip to content

Commit

Permalink
fix(implementing-an-arbitrable): fix import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed May 14, 2019
1 parent 523d51a commit 3c5dfcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/implementing-an-arbitrable.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Let's start:
pragma solidity ^0.5.8;
import "../Arbitrable.sol";
import "../IArbitrable.sol";
import "../Arbitrator.sol";
contract SimpleEscrow is IArbitrable {
Expand Down Expand Up @@ -55,7 +55,7 @@ Let's implement the first scenario:
:emphasize-lines: 15,16,26,27,28,29,30,31,32,33
pragma solidity ^0.5.8;
import "../IArbitrable.sol";
import "../Arbitrator.sol";
Expand Down

0 comments on commit 3c5dfcf

Please sign in to comment.