From d238982008894e852e52d17ef666d6a0fed4e3d1 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Fri, 24 Jan 2025 15:56:00 -0300 Subject: [PATCH] refactor(blogo,metadata)!: fix casing of UintPtr to Uintptr --- blogo/metadata/typed.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blogo/metadata/typed.go b/blogo/metadata/typed.go index 6bc44cc..e759e28 100644 --- a/blogo/metadata/typed.go +++ b/blogo/metadata/typed.go @@ -32,7 +32,7 @@ type TypedMetadata interface { GetUint16(key string) (uint16, error) GetUint32(key string) (uint32, error) GetUint64(key string) (uint64, error) - GetUintPtr(key string) (uintptr, error) + GetUintptr(key string) (uintptr, error) GetByte(key string) (byte, error) @@ -99,7 +99,7 @@ func (m *typedMetadata) GetUint64(key string) (uint64, error) { return GetTyped[uint64](m, key) } -func (m *typedMetadata) GetUintPtr(key string) (uintptr, error) { +func (m *typedMetadata) GetUintptr(key string) (uintptr, error) { return GetTyped[uintptr](m, key) }