From 218acc89ceb7b0fa4d8a92bed756cbf7d55b9566 Mon Sep 17 00:00:00 2001 From: James Sizeland Date: Mon, 4 Nov 2024 16:57:46 +0000 Subject: [PATCH] typo in docstring --- src/uuid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uuid.rs b/src/uuid.rs index e5e56cc..6afa9b9 100644 --- a/src/uuid.rs +++ b/src/uuid.rs @@ -21,7 +21,7 @@ pub mod units; /// /// The full 128-bit value of a 16-bit or 32-bit UUID may be computed by a simple arithmetic operation. /// -/// 128_bit_value = 16_bit_value × 296 + Bluetooth_Base_UUID +/// 128_bit_value = 16_bit_value × 2^96 + Bluetooth_Base_UUID pub const BLUETOOTH_BASE_UUID: [u8; 16] = [ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB, ];