Skip to content

Commit 78b9682

Browse files
committed
Fix dead links in JS externs too
1 parent 455b840 commit 78b9682

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

javascript/externs/es/es2016.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @fileoverview Definitions for ECMAScript 2016.
7-
* @see http://www.ecma-international.org/ecma-262/7.0/
7+
* @see https://262.ecma-international.org/7.0/
88
* @externs
99
*/
1010

javascript/externs/es/es6.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ String.prototype.repeat = function(count) {};
210210
/**
211211
* @constructor
212212
* @extends {Array<string>}
213-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-gettemplateobject
213+
* @see https://262.ecma-international.org/6.0/#sec-gettemplateobject
214214
*/
215215
var ITemplateArray = function() {};
216216

@@ -1228,7 +1228,7 @@ Array.prototype.entries;
12281228
* @return {T|undefined}
12291229
* @this {IArrayLike<T>|string}
12301230
* @template T,S
1231-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.find
1231+
* @see https://262.ecma-international.org/6.0/#sec-array.prototype.find
12321232
*/
12331233
Array.prototype.find = function(predicate, opt_this) {};
12341234

@@ -1239,7 +1239,7 @@ Array.prototype.find = function(predicate, opt_this) {};
12391239
* @return {number}
12401240
* @this {IArrayLike<T>|string}
12411241
* @template T,S
1242-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.findindex
1242+
* @see https://262.ecma-international.org/6.0/#sec-array.prototype.findindex
12431243
*/
12441244
Array.prototype.findIndex = function(predicate, opt_this) {};
12451245

@@ -1251,7 +1251,7 @@ Array.prototype.findIndex = function(predicate, opt_this) {};
12511251
* @return {!IArrayLike<T>}
12521252
* @this {!IArrayLike<T>|string}
12531253
* @template T
1254-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.fill
1254+
* @see https://262.ecma-international.org/6.0/#sec-array.prototype.fill
12551255
*/
12561256
Array.prototype.fill = function(value, opt_begin, opt_end) {};
12571257

@@ -1260,7 +1260,7 @@ Array.prototype.fill = function(value, opt_begin, opt_end) {};
12601260
* @param {number} target
12611261
* @param {number} start
12621262
* @param {number=} opt_end
1263-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-array.prototype.copywithin
1263+
* @see https://262.ecma-international.org/6.0/#sec-array.prototype.copywithin
12641264
* @template T
12651265
* @return {!IArrayLike<T>}
12661266
*/
@@ -1281,7 +1281,7 @@ Array.prototype.includes = function(searchElement, opt_fromIndex) {};
12811281
/**
12821282
* @param {!Object} obj
12831283
* @return {!Array<symbol>}
1284-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-object.getownpropertysymbols
1284+
* @see https://262.ecma-international.org/6.0/#sec-object.getownpropertysymbols
12851285
*/
12861286
Object.getOwnPropertySymbols = function(obj) {};
12871287

@@ -1290,7 +1290,7 @@ Object.getOwnPropertySymbols = function(obj) {};
12901290
* @param {!Object} obj
12911291
* @param {?} proto
12921292
* @return {!Object}
1293-
* @see http://www.ecma-international.org/ecma-262/6.0/#sec-object.setprototypeof
1293+
* @see https://262.ecma-international.org/6.0/#sec-object.setprototypeof
12941294
*/
12951295
Object.setPrototypeOf = function(obj, proto) {};
12961296

0 commit comments

Comments
 (0)