From 468454c95d2887fb399e4a4afe1d9380ca0d5b0e Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Sun, 9 Jan 2022 02:28:29 -0500 Subject: [PATCH] Fix small typo in node-pty.d.ts `The` instead of `THe` --- typings/node-pty.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/node-pty.d.ts b/typings/node-pty.d.ts index 9dd3286cc..4dc542785 100644 --- a/typings/node-pty.d.ts +++ b/typings/node-pty.d.ts @@ -171,7 +171,7 @@ declare module 'node-pty' { /** * Resizes the dimensions of the pty. - * @param columns THe number of columns to use. + * @param columns The number of columns to use. * @param rows The number of rows to use. */ resize(columns: number, rows: number): void;