aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/binary
diff options
context:
space:
mode:
authorDmitry Savintsev <dsavints@gmail.com>2015-06-29 13:09:06 +0200
committerRuss Cox <rsc@golang.org>2015-06-29 14:28:01 +0000
commitfac7b86a9bda829147da72ad61c7b66b58781ed8 (patch)
tree5a236989e609981a0f960f79197ca998b54d15fa /src/encoding/binary
parenta76c1a5c7fb704e5658bbbe9f27b4301b86bfd80 (diff)
downloadgo-fac7b86a9bda829147da72ad61c7b66b58781ed8.tar.gz
go-fac7b86a9bda829147da72ad61c7b66b58781ed8.zip
encoding/binary: update protobuf documentation link
Updated the protobuf documentation URL (code.google.com deprecated) to avoid a redirect. Change-Id: I134f6e4a2bf2bba699942883bf6347bc61700bcb Reviewed-on: https://go-review.googlesource.com/11634 Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/encoding/binary')
-rw-r--r--src/encoding/binary/binary.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/binary/binary.go b/src/encoding/binary/binary.go
index ac15fb7415..2bbe07c02f 100644
--- a/src/encoding/binary/binary.go
+++ b/src/encoding/binary/binary.go
@@ -13,7 +13,7 @@
// The varint functions encode and decode single integer values using
// a variable-length encoding; smaller values require fewer bytes.
// For a specification, see
-// http://code.google.com/apis/protocolbuffers/docs/encoding.html.
+// https://developers.google.com/protocol-buffers/docs/encoding.
//
// This package favors simplicity over efficiency. Clients that require
// high-performance serialization, especially for large data structures,