From bbd1a1dbe2aac4d0463f35d9fdaf2730bdfbcd7f Mon Sep 17 00:00:00 2001 From: arencoskun Date: Thu, 1 Feb 2024 13:05:13 +0300 Subject: [PATCH] Try to fix linter errors --- src/browser/Terminal.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/browser/Terminal.ts b/src/browser/Terminal.ts index 6e06855a..0b4d2e70 100644 --- a/src/browser/Terminal.ts +++ b/src/browser/Terminal.ts @@ -1193,9 +1193,10 @@ export class Terminal extends CoreTerminal implements ITerminal { } /** - * Input data to application side. - * The data is treated the same way as typed input at the terminal (will appear in the onData event). - */ + * Input data to application side. + * The data is treated the same way as typed input at the terminal. + * (will appear in the onData event). + */ public input(data: string): void { this.coreService.triggerDataEvent(data, true); return this.write(data);