aboutsummaryrefslogtreecommitdiff
path: root/src/encoding
diff options
context:
space:
mode:
authorDaniel Martí <mvdan@mvdan.cc>2023-03-23 08:12:30 +0000
committerDaniel Martí <mvdan@mvdan.cc>2023-03-25 10:16:23 +0000
commit9768f736ea11165f10062401dec5509fdf1882ba (patch)
tree995fb59d9a83591bd0fb7d14ff778adef680d81d /src/encoding
parent478b1d260a21a83a090ba120efb79753495545e1 (diff)
downloadgo-9768f736ea11165f10062401dec5509fdf1882ba.tar.xz
all: add a few links in package godocs
I noticed the one in path/filepath while reading the docs, and the other ones were found via some quick grepping. Change-Id: I386f2f74ef816a6d18aa2f58ee6b64dbd0147c9e Reviewed-on: https://go-review.googlesource.com/c/go/+/478795 Run-TryBot: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Heschi Kreinick <heschi@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'src/encoding')
-rw-r--r--src/encoding/gob/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/gob/doc.go b/src/encoding/gob/doc.go
index 15473f18b2..53c47e7d00 100644
--- a/src/encoding/gob/doc.go
+++ b/src/encoding/gob/doc.go
@@ -6,7 +6,7 @@
Package gob manages streams of gobs - binary values exchanged between an
Encoder (transmitter) and a Decoder (receiver). A typical use is transporting
arguments and results of remote procedure calls (RPCs) such as those provided by
-package "net/rpc".
+[net/rpc].
The implementation compiles a custom codec for each data type in the stream and
is most efficient when a single Encoder is used to transmit a stream of values,