We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90cbe94 commit de7fe07Copy full SHA for de7fe07
src/content/docs/workers/runtime-apis/nodejs/http.mdx
@@ -32,7 +32,7 @@ import { get } from 'node:http';
32
import { strictEqual, ok } from 'node:assert';
33
34
get('http://docs.cloudflare.com/robots.txt', (res) => {
35
- // http://docs.cloudflare.com redirects to https url.
+ // requests to http://docs.cloudflare.com get redirected to their https counterpart.
36
strictEqual(res.statusCode, 301);
37
let data = '';
38
res.setEncoding('utf8');
0 commit comments