Skip to content

Commit 9ce44f6

Browse files
committed
Fix minor error using
> [email protected] lint /home/pedro/Documents/Codes/vscode-fortran-support > node ./node_modules/tslint/bin/tslint ./src/**/*.ts
1 parent e40ddad commit 9ce44f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const _loadDocString = (keyword: string) => {
8787
};
8888

8989
export const getIncludeParams = (paths: string[]) => {
90-
return paths.map(path => `-I${path}`)
90+
return paths.map(path => `-I${path}`);
9191
};
9292

9393
export function isPositionInString(

0 commit comments

Comments
 (0)