diff options
author | Jameson Nash <vtjnash@gmail.com> | 2020-01-07 14:52:10 -0500 |
---|---|---|
committer | Jameson Nash <vtjnash@gmail.com> | 2020-01-08 11:52:02 -0500 |
commit | 8cb8afe25338580356b0e6a61837b880d2145cce (patch) | |
tree | d2e2a63f97c8420c9ca5420968820377314c057b /docs/src/sphinx-plugins/manpage.py | |
parent | c072a3846df0e54030584a812360dd3ecbb79684 (diff) | |
download | libuv-8cb8afe25338580356b0e6a61837b880d2145cce.tar.gz libuv-8cb8afe25338580356b0e6a61837b880d2145cce.zip |
docs: switch from linux.die.net to man7.org
The former was missing `urandom`, while the later is the host site for
https://www.kernel.org/doc/man-pages
PR-URL: https://github.com/libuv/libuv/pull/2608
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Diffstat (limited to 'docs/src/sphinx-plugins/manpage.py')
-rw-r--r-- | docs/src/sphinx-plugins/manpage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/sphinx-plugins/manpage.py b/docs/src/sphinx-plugins/manpage.py index efb4cca2..672b0020 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 = "https://linux.die.net/man/%s/%s" % (manpage_num, name) + ref = "http://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) |