aboutsummaryrefslogtreecommitdiff
path: root/docs/src/sphinx-plugins
diff options
context:
space:
mode:
authorJameson Nash <vtjnash@gmail.com>2020-08-18 13:07:04 -0400
committerGitHub <noreply@github.com>2020-08-18 13:07:04 -0400
commit707dd7f17d9d84d972282666fee47dd3b216349b (patch)
treeb1c93f432bccaac4b9b3acf22ae77a73e6801955 /docs/src/sphinx-plugins
parent99e88edf736827a26e8ce9d87da972f41ce828d9 (diff)
downloadlibuv-707dd7f17d9d84d972282666fee47dd3b216349b.tar.gz
libuv-707dd7f17d9d84d972282666fee47dd3b216349b.zip
doc: fix most sphinx warnings
PR-URL: https://github.com/libuv/libuv/pull/2956 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src/sphinx-plugins')
-rw-r--r--docs/src/sphinx-plugins/manpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/sphinx-plugins/manpage.py b/docs/src/sphinx-plugins/manpage.py
index 672b0020..6570aeaf 100644
--- a/docs/src/sphinx-plugins/manpage.py
+++ b/docs/src/sphinx-plugins/manpage.py
@@ -18,7 +18,7 @@ from string import Template
def make_link_node(rawtext, app, name, manpage_num, options):
ref = app.config.man_url_regex
if not ref:
- ref = "http://man7.org/linux/man-pages/man%s/%s.%s.html" %(manpage_num, name, manpage_num)
+ ref = "https://man7.org/linux/man-pages/man%s/%s.%s.html" %(manpage_num, name, manpage_num)
else:
s = Template(ref)
ref = s.substitute(num=manpage_num, topic=name)