summaryrefslogtreecommitdiffstats
path: root/net/src
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2022-01-06 16:20:27 +0100
committerNeal H. Walfield <neal@pep.foundation>2022-01-12 14:52:20 +0100
commit6dee090957baaa3dfa75db1669af5a750a0fbbeb (patch)
tree2de851e4771415df714c46b286f7b4908fe0a12e /net/src
parent0d2bccd81ebb296453ecdf6114ca92a54dcc9830 (diff)
net: Fix link.
- Detected by the rustdoc::bare-urls lint.
Diffstat (limited to 'net/src')
-rw-r--r--net/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/src/lib.rs b/net/src/lib.rs
index 4f66b415..39fc2d71 100644
--- a/net/src/lib.rs
+++ b/net/src/lib.rs
@@ -64,7 +64,7 @@ pub mod pks;
pub mod updates;
pub mod wkd;
-/// https://url.spec.whatwg.org/#fragment-percent-encode-set
+/// <https://url.spec.whatwg.org/#fragment-percent-encode-set>
const KEYSERVER_ENCODE_SET: &AsciiSet =
// Formerly DEFAULT_ENCODE_SET
&CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>').add(b'`')