Fix documentation typos

This commit is contained in:
Ognyan Chikov
2019-03-20 11:37:38 +02:00
parent 667c22169f
commit 05424c9f33
3 changed files with 6 additions and 6 deletions

View File

@@ -8,10 +8,10 @@ In order to use `RevertTraceSubprovider` with your favorite framework you need t
### Sol-compiler
If you are generating your artifacts with [@0x/sol-compiler](https://0x.org/docs/sol-compiler) you can use the `SolCompilerArtifactsAdapter` we've implemented for you.
If you are generating your artifacts with [@0x/sol-compiler](https://0x.org/docs/sol-compiler) you can use the `SolCompilerArtifactAdapter` we've implemented for you.
```typescript
import { SolCompilerArtifactsAdapter } from '@0x/sol-trace';
import { SolCompilerArtifactAdapter } from '@0x/sol-trace';
// Both artifactsDir and contractsDir are optional and will be fetched from compiler.json if not passed in
const artifactAdapter = new SolCompilerArtifactAdapter(artifactsDir, contractsDir);
```