11// Protocol Buffers - Google's data interchange format
22// Copyright 2008 Google Inc. All rights reserved.
3- // https://developers.google.com/protocol-buffers /
3+ // https://protobuf.dev /
44//
55// Redistribution and use in source and binary forms, with or without
66// modification, are permitted provided that the following conditions are
@@ -54,7 +54,7 @@ goog.require('jspb.utils');
5454
5555/**
5656 * BinaryDecoder implements the decoders for all the wire types specified in
57- * https://developers.google.com/protocol-buffers/docs/ encoding.
57+ * https://protobuf.dev/programming-guides/ encoding/ .
5858 *
5959 * @param {jspb.ByteSource= } opt_bytes The bytes we're reading from.
6060 * @param {number= } opt_start The optional offset to start reading at.
@@ -301,7 +301,7 @@ jspb.BinaryDecoder.prototype.getError = function() {
301301 *
302302 * Decoding varints requires doing some funny base-128 math - for more
303303 * details on the format, see
304- * https://developers.google.com/protocol-buffers/docs/ encoding
304+ * https://protobuf.dev/programming-guides/ encoding/
305305 *
306306 * @param {function(number, number): T } convert Conversion function to produce
307307 * the result value, takes parameters (lowBits, highBits).
@@ -358,7 +358,7 @@ jspb.BinaryDecoder.prototype.readSplitVarint64 = function(convert) {
358358 *
359359 * Zigzag encoding is a modification of varint encoding that reduces the
360360 * storage overhead for small negative integers - for more details on the
361- * format, see https://developers.google.com/protocol-buffers/docs/ encoding
361+ * format, see https://protobuf.dev/programming-guides/ encoding/
362362 *
363363 * @param {function(number, number): T } convert Conversion function to produce
364364 * the result value, takes parameters (lowBits, highBits).
@@ -439,7 +439,7 @@ jspb.BinaryDecoder.prototype.unskipVarint = function(value) {
439439 *
440440 * Decoding varints requires doing some funny base-128 math - for more
441441 * details on the format, see
442- * https://developers.google.com/protocol-buffers/docs/ encoding
442+ * https://protobuf.dev/programming-guides/ encoding/
443443 *
444444 * @return {number } The decoded unsigned 32-bit varint.
445445 * @export
@@ -554,7 +554,7 @@ jspb.BinaryDecoder.prototype.readSignedVarint32String = function() {
554554 *
555555 * Zigzag encoding is a modification of varint encoding that reduces the
556556 * storage overhead for small negative integers - for more details on the
557- * format, see https://developers.google.com/protocol-buffers/docs/ encoding
557+ * format, see https://protobuf.dev/programming-guides/ encoding/
558558 *
559559 * @return {number } The decoded signed, zigzag-encoded 32-bit varint.
560560 * @export
@@ -625,7 +625,7 @@ jspb.BinaryDecoder.prototype.readSignedVarint64String = function() {
625625 *
626626 * Zigzag encoding is a modification of varint encoding that reduces the
627627 * storage overhead for small negative integers - for more details on the
628- * format, see https://developers.google.com/protocol-buffers/docs/ encoding
628+ * format, see https://protobuf.dev/programming-guides/ encoding/
629629 *
630630 * @return {number } The decoded zigzag varint. Precision will be lost if the
631631 * integer exceeds 2^53.
@@ -643,7 +643,7 @@ jspb.BinaryDecoder.prototype.readZigzagVarint64 = function() {
643643 *
644644 * Zigzag encoding is a modification of varint encoding that reduces the
645645 * storage overhead for small negative integers - for more details on the
646- * format, see https://developers.google.com/protocol-buffers/docs/ encoding
646+ * format, see https://protobuf.dev/programming-guides/ encoding/
647647 *
648648 * @return {string } The decoded zigzag varint in hash64 format.
649649 * @export
@@ -659,7 +659,7 @@ jspb.BinaryDecoder.prototype.readZigzagVarintHash64 = function() {
659659 *
660660 * Zigzag encoding is a modification of varint encoding that reduces the
661661 * storage overhead for small negative integers - for more details on the
662- * format, see https://developers.google.com/protocol-buffers/docs/ encoding
662+ * format, see https://protobuf.dev/programming-guides/ encoding/
663663 *
664664 * @return {string } The decoded signed, zigzag-encoded 64-bit varint as a
665665 * string.
0 commit comments