diff options
author | Rosemary Ajayi <okhuomonajayi54@gmail.com> | 2024-03-31 19:58:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-31 19:58:37 +0000 |
commit | bd287df0d4846c494df6a18fa558eb19a9e9fdfd (patch) | |
tree | 90ec4794ce95cb53184e13fd7b5f927ee5b632c0 /components/script/dom/bluetoothuuid.rs | |
parent | c3360df9189271eee039f0a74d73e0c2b48a4796 (diff) | |
download | servo-bd287df0d4846c494df6a18fa558eb19a9e9fdfd.tar.gz servo-bd287df0d4846c494df6a18fa558eb19a9e9fdfd.zip |
fixed various clippy warnings (#31954)
Diffstat (limited to 'components/script/dom/bluetoothuuid.rs')
-rw-r--r-- | components/script/dom/bluetoothuuid.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bluetoothuuid.rs b/components/script/dom/bluetoothuuid.rs index c233b69144e..2be73830f3b 100644 --- a/components/script/dom/bluetoothuuid.rs +++ b/components/script/dom/bluetoothuuid.rs @@ -523,7 +523,7 @@ const BLUETOOTH_ASSIGNED_CHARCTERISTICS: &[(&str, u32)] = &[ ]; //https://developer.bluetooth.org/gatt/services/Pages/ServicesHome.aspx -const BLUETOOTH_ASSIGNED_DESCRIPTORS: &'static [(&str, u32)] = &[ +const BLUETOOTH_ASSIGNED_DESCRIPTORS: &[(&str, u32)] = &[ ( "org.bluetooth.descriptor.gatt.characteristic_extended_properties", 0x2900_u32, |