JS: Make docs match reality

This commit is contained in:
Asger F
2019-06-29 15:23:52 +01:00
parent 2822e493ae
commit 4f05eab3fd

View File

@@ -15,7 +15,7 @@ public class Position implements Comparable<Position> {
return line;
}
/** The column number (1-based) of this position. */
/** The column number (0-based) of this position. */
public int getColumn() {
return column;
}