Closes #39402
https://github.com/dart-lang/sdk/pull/39402

GitOrigin-RevId: 89a3ac03e3fc971e0fcfeb36ddcc1bc6b2ffcb34
Change-Id: Idee225262fbfa1c3dc7acbabd141eb7a275fee87
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/125442
Reviewed-by: Michael Thomsen <mit@google.com>
This commit is contained in:
mnordine 2019-11-20 11:25:52 +00:00 committed by Michael Thomsen
parent 11d523dfe1
commit f594720679

View file

@ -86,7 +86,7 @@ class LineInfo {
}
}
// Binary search to fine the line containing this offset.
// Binary search to find the line containing this offset.
while (min < max) {
var midpoint = (max - min + 1) ~/ 2 + min;