Skip to content

Commit 9022527

Browse files
PeterJCLawbrettcannon
authored andcommitted
Fix typo in comment (microsoft#1711)
1 parent f878b48 commit 9022527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/testRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type Instrumenter = istanbul.Instrumenter & { coverState: CoverState };
3838
type TestCallback = (error?: Error, failures?: number) => void;
3939

4040
// Linux: prevent a weird NPE when mocha on Linux requires the window size from the TTY.
41-
// Since we are not running in a tty environment, we just implementt he method statically.
41+
// Since we are not running in a tty environment, we just implement the method statically.
4242
const tty = require('tty');
4343
if (!tty.getWindowSize) {
4444
tty.getWindowSize = function (): number[] { return [80, 75]; };

0 commit comments

Comments
 (0)