Skip to content

Commit 32c51c6

Browse files
sapicsaddaleax
authored andcommitted
lib: replace http to https of comment link urls
PR-URL: #34158 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 2354170 commit 32c51c6

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

lib/_http_server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ function Server(options, requestListener) {
348348

349349
// Similar option to this. Too lazy to write my own docs.
350350
// http://www.squid-cache.org/Doc/config/half_closed_clients/
351-
// http://wiki.squid-cache.org/SquidFaq/InnerWorkings#What_is_a_half-closed_filedescriptor.3F
351+
// https://wiki.squid-cache.org/SquidFaq/InnerWorkings#What_is_a_half-closed_filedescriptor.3F
352352
this.httpAllowHalfOpen = false;
353353

354354
this.on('connection', connectionListener);

lib/https.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function Server(opts, requestListener) {
5757

5858
if (!opts.ALPNProtocols) {
5959
// http/1.0 is not defined as Protocol IDs in IANA
60-
// http://www.iana.org/assignments/tls-extensiontype-values
60+
// https://www.iana.org/assignments/tls-extensiontype-values
6161
// /tls-extensiontype-values.xhtml#alpn-protocol-ids
6262
opts.ALPNProtocols = ['http/1.1'];
6363
}

lib/internal/child_process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ function getValidStdio(stdio, sync) {
914914
// At least 3 stdio will be created
915915
// Don't concat() a new Array() because it would be sparse, and
916916
// stdio.reduce() would skip the sparse elements of stdio.
917-
// See http://stackoverflow.com/a/5501711/3561
917+
// See https://stackoverflow.com/a/5501711/3561
918918
while (stdio.length < 3) stdio.push(undefined);
919919

920920
// Translate stdio into C++-readable form

lib/internal/source_map/source_map.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ class StringCharIterator {
113113
}
114114

115115
/**
116-
* Implements Source Map V3 model. See http://code.google.com/p/closure-compiler/wiki/SourceMaps
116+
* Implements Source Map V3 model.
117+
* See https://github.com/google/closure-compiler/wiki/Source-Maps
117118
* for format description.
118119
* @constructor
119120
* @param {string} sourceMappingURL

lib/internal/tty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function getColorDepth(env = process.env) {
125125
env.NO_COLOR !== undefined ||
126126
// The "dumb" special terminal, as defined by terminfo, doesn't support
127127
// ANSI color control codes.
128-
// See http://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
128+
// See https://invisible-island.net/ncurses/terminfo.ti.html#toc-_Specials
129129
env.TERM === 'dumb') {
130130
return COLORS_2;
131131
}

lib/internal/util/inspect.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ ObjectDefineProperty(inspect, 'defaultOptions', {
306306
}
307307
});
308308

309-
// Set Graphics Rendition http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
309+
// Set Graphics Rendition https://en.wikipedia.org/wiki/ANSI_escape_code#graphics
310310
// Each color consists of an array with the color code as first entry and the
311311
// reset code as second entry.
312312
const defaultFG = 39;
@@ -2009,7 +2009,7 @@ if (internalBinding('config').hasIntl) {
20092009
*/
20102010
const isFullWidthCodePoint = (code) => {
20112011
// Code points are partially derived from:
2012-
// http://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt
2012+
// https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt
20132013
return code >= 0x1100 && (
20142014
code <= 0x115f || // Hangul Jamo
20152015
code === 0x2329 || // LEFT-POINTING ANGLE BRACKET

lib/querystring.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ const noEscape = [
140140
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0 // 112 - 127
141141
];
142142
// QueryString.escape() replaces encodeURIComponent()
143-
// http://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.4
143+
// https://www.ecma-international.org/ecma-262/5.1/#sec-15.1.3.4
144144
function qsEscape(str) {
145145
if (typeof str !== 'string') {
146146
if (typeof str === 'object')

lib/readline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// Inspiration for this code comes from Salvatore Sanfilippo's linenoise.
2323
// https://github.com/antirez/linenoise
2424
// Reference:
25-
// * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
25+
// * https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
2626
// * http://www.3waylabs.com/nw/WWW/products/wizcon/vt220.html
2727

2828
'use strict';

0 commit comments

Comments
 (0)