diff options
author | Attila Dusnoki <dati91@gmail.com> | 2016-12-06 14:16:33 +0100 |
---|---|---|
committer | Attila Dusnoki <dati91@gmail.com> | 2016-12-06 14:16:33 +0100 |
commit | 7e74e340dc146a85fa07825e1e834f7bcb9d5a2c (patch) | |
tree | 28d823a5d14732ffd19ef9408f5d5644d43e2691 | |
parent | 6c3e94805f74e78b091b37fe374af12ad2249528 (diff) | |
download | servo-7e74e340dc146a85fa07825e1e834f7bcb9d5a2c.tar.gz servo-7e74e340dc146a85fa07825e1e834f7bcb9d5a2c.zip |
Fix BluetoothUUID typo
-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 fbf49142aa3..bf8774650ba 100644 --- a/components/script/dom/bluetoothuuid.rs +++ b/components/script/dom/bluetoothuuid.rs @@ -296,7 +296,7 @@ impl BluetoothUUID { resolve_uuid_name(name, BLUETOOTH_ASSIGNED_SERVICES, SERVICE_PREFIX) } - pub fn characteristic(name: BluetoothServiceUUID) -> Fallible<UUID> { + pub fn characteristic(name: BluetoothCharacteristicUUID) -> Fallible<UUID> { resolve_uuid_name(name, BLUETOOTH_ASSIGNED_CHARCTERISTICS, CHARACTERISTIC_PREFIX) } |