Skip to content

Commit f12d035

Browse files
committed
Fix typos in help text
1 parent 2634a67 commit f12d035

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Gulpfile.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -900,24 +900,24 @@ gulp.task("runtests-browser", "Runs the tests using the built run.js file like '
900900
});
901901
});
902902

903-
gulp.task("generate-code-coverage", "Generates code coverage data via instanbul", ["tests"], (done) => {
903+
gulp.task("generate-code-coverage", "Generates code coverage data via istanbul", ["tests"], (done) => {
904904
exec("istanbul", ["cover", "node_modules/mocha/bin/_mocha", "--", "-R", "min", "-t", testTimeout.toString(), run], done, done);
905905
});
906906

907907

908908
function getDiffTool() {
909909
const program = process.env["DIFF"];
910910
if (!program) {
911-
console.error("Add the 'DIFF' environment constiable to the path of the program you want to use.");
911+
console.error("Add the 'DIFF' environment variable to the path of the program you want to use.");
912912
process.exit(1);
913913
}
914914
return program;
915915
}
916916

917-
gulp.task("diff", "Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment constiable", (done) => {
917+
gulp.task("diff", "Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment variable", (done) => {
918918
exec(getDiffTool(), [refBaseline, localBaseline], done, done);
919919
});
920-
gulp.task("diff-rwc", "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment constiable", (done) => {
920+
gulp.task("diff-rwc", "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable", (done) => {
921921
exec(getDiffTool(), [refRwcBaseline, localRwcBaseline], done, done);
922922
});
923923

0 commit comments

Comments
 (0)