Update a few invalid links

Pick-to: 6.5 6.5.0
Change-Id: Id2dcf9b15a79a2a4cdf3e82f99b87f192a1dabcb
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Tatiana Borisova 2023-03-15 14:27:50 +01:00
parent a59d5ad763
commit 8ff4b510f2
2 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ class QProtobufSerializerPrivate
{ {
// The below type trait structures help to determine the required encoding method for protobuf // The below type trait structures help to determine the required encoding method for protobuf
// types. // types.
// See https://developers.google.com/protocol-buffers/docs/encoding#cheat-sheet for details. // See https://protobuf.dev/programming-guides/encoding for details.
// Tests if V is a Varint-compatible unsigned integer type. // Tests if V is a Varint-compatible unsigned integer type.
// uint32 | uint64 // uint32 | uint64
@ -211,7 +211,7 @@ public:
Serialization of signed integral types Serialization of signed integral types
Uses ZigZag encoding[0] first then apply serialization as for unsigned integral types Uses ZigZag encoding[0] first then apply serialization as for unsigned integral types
[0]: https://developers.google.com/protocol-buffers/docs/encoding [0]: https://protobuf.dev/programming-guides/encoding
value: Value to serialize value: Value to serialize
outFieldIndex: Index of the value in parent structure outFieldIndex: Index of the value in parent structure
@ -246,7 +246,7 @@ public:
"Varints are a method of serializing integers using one or more bytes. Smaller numbers "Varints are a method of serializing integers using one or more bytes. Smaller numbers
[regardless its type] take a smaller number of bytes." [regardless its type] take a smaller number of bytes."
[0]: https://developers.google.com/protocol-buffers/docs/encoding [0]: https://protobuf.dev/programming-guides/encoding
value: Value to serialize value: Value to serialize
outFieldIndex: Index of the value in parent structure outFieldIndex: Index of the value in parent structure

View File

@ -321,7 +321,7 @@ QT_IMPL_METATYPE_EXTERN_TAGGED(QtProtobuf::sfixed64, QtProtobuf_sfixed64)
\value EndGroup groups. Deprecated in proto syntax 3. Not supported by QtProtobuf. \value EndGroup groups. Deprecated in proto syntax 3. Not supported by QtProtobuf.
\value Fixed32 fixed32, sfixed32, float \value Fixed32 fixed32, sfixed32, float
\sa {https://developers.google.com/protocol-buffers/docs/encoding} {encoding} \sa {https://protobuf.dev/programming-guides/encoding} {encoding}
*/ */
/*! /*!
@ -395,7 +395,7 @@ QT_IMPL_METATYPE_EXTERN_TAGGED(QtProtobuf::sfixed64, QtProtobuf_sfixed64)
sint32 is serialized using ZigZag conversion to reduce size of negative sint32 is serialized using ZigZag conversion to reduce size of negative
numbers. numbers.
\sa {https://developers.google.com/protocol-buffers/docs/encoding#signed-integers} {signed-integers} \sa {https://protobuf.dev/programming-guides/encoding/#signed-ints} {signed-integers}
*/ */
/*! /*!
@ -405,7 +405,7 @@ QT_IMPL_METATYPE_EXTERN_TAGGED(QtProtobuf::sfixed64, QtProtobuf_sfixed64)
protobuf as variable size integer, an alias for WireTypes::Varint. protobuf as variable size integer, an alias for WireTypes::Varint.
sint64 is serialized using ZigZag conversion to reduce size of negative numbers. sint64 is serialized using ZigZag conversion to reduce size of negative numbers.
\sa {https://developers.google.com/protocol-buffers/docs/encoding#signed-integers} {signed-integers} \sa {https://protobuf.dev/programming-guides/encoding/#signed-ints} {signed-integers}
*/ */
/*! /*!