Skip to content

Commit 7342e28

Browse files
committed
doc: consistent markdown links
1 parent 556be78 commit 7342e28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

underscore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255

256256
// Return the maximum element or (element-based computation).
257257
// Can't optimize arrays of integers longer than 65,535 elements.
258-
// See: https://bugs.webkit.org/show_bug.cgi?id=80797
258+
// See [WebKit Bug 80797](https://bugs.webkit.org/show_bug.cgi?id=80797)
259259
_.max = function(obj, iterator, context) {
260260
if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) {
261261
return Math.max.apply(Math, obj);
@@ -847,7 +847,7 @@
847847
// Internal recursive comparison function for `isEqual`.
848848
var eq = function(a, b, aStack, bStack) {
849849
// Identical objects are equal. `0 === -0`, but they aren't identical.
850-
// See the Harmony `egal` proposal: http://wiki.ecmascript.org/doku.php?id=harmony:egal.
850+
// See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
851851
if (a === b) return a !== 0 || 1 / a == 1 / b;
852852
// A strict comparison is necessary because `null == undefined`.
853853
if (a == null || b == null) return a === b;

0 commit comments

Comments
 (0)