Skip to content

Commit a1bc7eb

Browse files
committed
Capitalize!
1 parent 8ff45d2 commit a1bc7eb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/pure/sarif-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export function shouldHighlightLine(
200200
* A line of code split into: plain text before the highlighted section, the highlighted
201201
* text itself, and plain text after the highlighted section.
202202
*/
203-
interface partiallyHighlightedLine {
203+
export interface PartiallyHighlightedLine {
204204
plainSection1: string;
205205
highlightedSection: string;
206206
plainSection2: string;
@@ -213,7 +213,7 @@ export function parseHighlightedLine(
213213
line: string,
214214
lineNumber: number,
215215
highlightedRegion: HighlightedRegion
216-
): partiallyHighlightedLine {
216+
): PartiallyHighlightedLine {
217217
const isSingleLineHighlight = highlightedRegion.endLine === undefined;
218218
const isFirstHighlightedLine = lineNumber === highlightedRegion.startLine;
219219
const isLastHighlightedLine = lineNumber === highlightedRegion.endLine;

0 commit comments

Comments
 (0)