Skip to content

Commit

Permalink
Fix small typo (#19993)
Browse files Browse the repository at this point in the history
Closes #19993

COPYBARA_INTEGRATE_REVIEW=#19993 from ahamez:patch-2 4ab49d1
PiperOrigin-RevId: 721211520
  • Loading branch information
ahamez authored and copybara-github committed Jan 30, 2025
1 parent be63078 commit 79287c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conformance/binary_json_conformance_suite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1419,8 +1419,8 @@ void BinaryAndJsonConformanceSuiteImpl<MessageType>::TestUnknownWireType() {
for (uint8_t type : {0x6, 0x7}) {
for (uint8_t field = 0; field < 4; ++field) {
for (uint8_t value = 0; value < 4; ++value) {
std::string name = absl::StrFormat("UnknownWireType%d_Field%d_Verion%d",
type, field, value);
std::string name = absl::StrFormat(
"UnknownWireType%d_Field%d_Version%d", type, field, value);

char data[2];
data[0] = (field << 3) | type; // unknown wire type.
Expand Down

0 comments on commit 79287c9

Please sign in to comment.