Skip to content

Commit e55ef6e

Browse files
authored
fix commas
1 parent fdff9df commit e55ef6e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Documentation/LanguageServer/MinGW.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Starting with version 0.16.1, if you set the `compilerPath` property and change
1212
"intelliSenseMode": "clang-x64",
1313
"compilerPath": "C:/MinGW/bin/gcc.exe",
1414
"includePath": [
15-
"${workspaceRoot}",
15+
"${workspaceRoot}"
1616
],
1717
"defines": [
1818
"_DEBUG"
@@ -21,8 +21,8 @@ Starting with version 0.16.1, if you set the `compilerPath` property and change
2121
"path": [
2222
"C:/MinGW/lib/gcc/mingw32/6.3.0/include",
2323
"C:/MinGW/lib/gcc/mingw32/6.3.0/include-fixed",
24-
"C:/MinGW/include/*"
25-
"${workspaceRoot}",
24+
"C:/MinGW/include/*",
25+
"${workspaceRoot}"
2626
],
2727
"limitSymbolsToIncludedHeaders": true,
2828
"databaseFilename": ""
@@ -63,8 +63,8 @@ In earlier versions of the extension, the `includePath` and a some system define
6363
"path": [
6464
"C:/MinGW/lib/gcc/mingw32/6.3.0/include",
6565
"C:/MinGW/lib/gcc/mingw32/6.3.0/include-fixed",
66-
"C:/MinGW/include/*"
67-
"${workspaceRoot}",
66+
"C:/MinGW/include/*",
67+
"${workspaceRoot}"
6868
],
6969
"limitSymbolsToIncludedHeaders": true,
7070
"databaseFilename": ""
@@ -99,8 +99,8 @@ For C projects, simply remove the C++ lines:
9999
"path": [
100100
"C:/MinGW/lib/gcc/mingw32/6.3.0/include",
101101
"C:/MinGW/lib/gcc/mingw32/6.3.0/include-fixed",
102-
"C:/MinGW/include/*"
103-
"${workspaceRoot}",
102+
"C:/MinGW/include/*",
103+
"${workspaceRoot}"
104104
],
105105
"limitSymbolsToIncludedHeaders": true,
106106
"databaseFilename": ""

0 commit comments

Comments
 (0)