From cbb0fc83c55121907c4af4f6431739436417b7b5 Mon Sep 17 00:00:00 2001 From: "Brandon McGinty (chatgpt)" Date: Sun, 9 Aug 2026 14:23:12 -0400 Subject: [PATCH] Correct Mumble version layout documentation --- gumble/gumble/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gumble/gumble/version.go b/gumble/gumble/version.go index 5203b9d..0dc9d7c 100644 --- a/gumble/gumble/version.go +++ b/gumble/gumble/version.go @@ -4,8 +4,8 @@ package gumble type Version struct { // The semantic version information as a single unsigned integer. // - // Bits 0-15 are the major version, bits 16-23 are the minor version, and - // bits 24-31 are the patch version. + // Bits 16-31 are the major version, bits 8-15 are the minor version, and + // bits 0-7 are the patch version. Version uint32 // The name of the client. Release string