Skip to content

Commit

Permalink
Use HTTPS links
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 16, 2020
1 parent 49ac711 commit db1d98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/lower-bound.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Port of lower_bound from http://en.cppreference.com/w/cpp/algorithm/lower_bound
// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound
// Used to compute insertion index to keep queue sorted after insertion
export default function lowerBound<T>(array: readonly T[], value: T, comparator: (a: T, b: T) => number): number {
let first = 0;
Expand Down

0 comments on commit db1d98f

Please sign in to comment.