Skip to content

Commit

Permalink
Fixed a typo in wire type enum docs where 32 bit was wrongly copied
Browse files Browse the repository at this point in the history
  • Loading branch information
CrsiX authored and stepancheg committed Jan 11, 2024
1 parent 9449df4 commit b14c8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protobuf/src/wire_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub(crate) fn check_message_size(size: u64) -> crate::Result<u32> {
pub enum WireType {
/// Variable-length integer
Varint = 0,
/// 32-bit field (e. g. `fixed64` or `double`)
/// 64-bit field (e. g. `fixed64` or `double`)
Fixed64 = 1,
/// Length-delimited field
LengthDelimited = 2,
Expand Down

0 comments on commit b14c8bd

Please sign in to comment.