Skip to content

Commit

Permalink
Start and end should be integers, since they represent character offsets
Browse files Browse the repository at this point in the history
in the CSS or JS.
  • Loading branch information
Archie Lee committed Apr 6, 2018
1 parent 2a40fcb commit 844842b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Coverage.re
Expand Up @@ -2,8 +2,8 @@ type t;

type range = {
.
"start": float,
"end": float,
"start": int,
"end": int,
};

type report = {
Expand Down

0 comments on commit 844842b

Please sign in to comment.