commit 216c6771cefc96a6b80226e8ea764f92f8b7e531
parent 59e64403e8186d3e1c6946eeaea896999455beff
Author: Sebastian <sebastian@sebsite.pw>
Date: Sat, 20 Apr 2024 19:45:18 -0400
all: add trailing :: to module references
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto/ecdh/README b/crypto/ecdh/README
@@ -1,5 +1,5 @@
The crypto::ecdh module implements elliptic-curve diffie hellman key generation
-for curves implemented in [[crypto::ec]].
+for curves implemented in [[crypto::ec::]].
This is a low-level module which implements cryptographic primitives. Direct use
of cryptographic primitives is not recommended for non-experts, as incorrect use
diff --git a/debug/README b/debug/README
@@ -11,7 +11,7 @@ various error conditions, including:
- Stack overflows
In order to accomplish this, the debug module does some logic on @init which
-rigs up [[rt]] with debugging hooks and installs the relevant signal handlers
+rigs up [[rt::]] with debugging hooks and installs the relevant signal handlers
globally. If you set your own signal handlers for terminating signals (e.g.
SIGFPE) that the debug module handles, they will override the debug hooks.
diff --git a/encoding/asn1/decoder.ha b/encoding/asn1/decoder.ha
@@ -62,7 +62,7 @@ export type decoder = struct {
};
// Creates a new DER decoder that reads from 'src'. A buffered stream (see
-// [[bufio]]) is recommended for efficiency, as the decoder performs mostly
+// [[bufio::]]) is recommended for efficiency, as the decoder performs mostly
// short reads.
//
// Each entry must be read in its entirety before the next one is attended to.