We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5faad01 commit c07534aCopy full SHA for c07534a
source/error.d
@@ -14,7 +14,7 @@ struct ErrorInfo {
14
size_t col;
15
size_t length;
16
17
- string toString() => format("%s:%d:%d", file, line, col);
+ string toString() => format("%s:%d:%d", file, line + 1, col + 1);
18
}
19
20
private string FixPath(string path) => path.asRelativePath(getcwd()).array;
0 commit comments