fix: update rust doc for unsigned 32 value variant

This commit is contained in:
2026-02-26 14:52:54 +01:00
parent e30dcbb9c9
commit 51e18d66a7

View File

@@ -14,7 +14,7 @@ pub enum Value {
SignedInt(i64),
/// A UTF-8 encoded string.
Text(String),
/// An unsigned 64-bit integer.
/// An unsigned 32-bit integer.
UnsignedInt(u32),
}