fix travis-ci

This commit is contained in:
vvakame
2014-05-10 19:34:25 +09:00
parent 6af8618c81
commit 21be490958

View File

@@ -6,7 +6,7 @@ var pointA = new Point(1, 2);
pointA.row;
pointA.column;
var pointB = Point.fromObject({row: 2, col: 3});
var pointB = Point.fromObject({row: 2, column: 3});
var pointC = Point.min(pointA, pointB);
declare var TRange: TextBuffer.IRangeStatic;