File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ Returns **Object** instrumentation data;
174174
175175** Example**
176176``` javascript
177- const contracts = api .instrument (contracts);
177+ const instrumented = api .instrument (contracts);
178178const data = api .getInstrumentationData ();
179179save (data); // Pseudo-code
180180```
@@ -265,7 +265,7 @@ const {
265265 skipped
266266} = utils .assembleFiles (config, [' Migrations.sol' ])
267267
268- const instrumented = api .instrument (targets );
268+ const instrumented = api .instrument (contracts );
269269```
270270
271271--------------
@@ -339,7 +339,7 @@ const {
339339
340340utils .setupTempFolders (config, tempContractsDir, tempArtifactsDir);
341341
342- const instrumented = api .instrument (targets );
342+ const instrumented = api .instrument (contracts );
343343
344344utils .save (instrumented, config .contractsDir , tempContractsDir);
345345```
You can’t perform that action at this time.
0 commit comments