Skip to content

Commit 70da5e2

Browse files
committed
PoliCheck 💄
1 parent f922e8b commit 70da5e2

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

‎src/vs/editor/browser/viewParts/selections/selections.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export class SelectionsOverlay extends DynamicViewOverlay {
217217
endStyle.top = CornerStyle.INTERN;
218218
}
219219
} else if (previousFrameTop) {
220-
// Accept some hick-ups near the viewport edges to save on repaints
220+
// Accept some hiccups near the viewport edges to save on repaints
221221
startStyle.top = previousFrameTop.startStyle!.top;
222222
endStyle.top = previousFrameTop.endStyle!.top;
223223
}
@@ -239,7 +239,7 @@ export class SelectionsOverlay extends DynamicViewOverlay {
239239
endStyle.bottom = CornerStyle.INTERN;
240240
}
241241
} else if (previousFrameBottom) {
242-
// Accept some hick-ups near the viewport edges to save on repaints
242+
// Accept some hiccups near the viewport edges to save on repaints
243243
startStyle.bottom = previousFrameBottom.startStyle!.bottom;
244244
endStyle.bottom = previousFrameBottom.endStyle!.bottom;
245245
}

‎src/vs/workbench/contrib/terminal/browser/terminalInstance.ts‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,9 +1128,9 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
11281128

11291129
if (!reset) {
11301130
// HACK: Force initialText to be non-falsy for reused terminals such that the
1131-
// conptyInheritCursor flag is passed to the node-pty, this flag can cause a Window to hang
1132-
// in Windows 10 1903 so we only want to use it when something is definitely written to the
1133-
// terminal.
1131+
// conptyInheritCursor flag is passed to the node-pty, this flag can cause a Window to stop
1132+
// responding in Windows 10 1903 so we only want to use it when something is definitely written
1133+
// to the terminal.
11341134
shell.initialText = ' ';
11351135
}
11361136

0 commit comments

Comments
 (0)