From f37008356a7acb402e7c29fbcbc89e2d838ac982 Mon Sep 17 00:00:00 2001 From: Attila Dusnoki Date: Tue, 6 Dec 2016 08:38:58 -0800 Subject: [PATCH] servo: Merge #14469 - Fix BluetoothUUID typo (from szeged:uuid_fix); r=KiChjang --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] There are tests for these changes Source-Repo: https://github.com/servo/servo Source-Revision: ce59cdd90b72354ec1f266ce00c18be422527648 --- servo/components/script/dom/bluetoothuuid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servo/components/script/dom/bluetoothuuid.rs b/servo/components/script/dom/bluetoothuuid.rs index fbf49142aa32..bf8774650ba9 100644 --- a/servo/components/script/dom/bluetoothuuid.rs +++ b/servo/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 { + pub fn characteristic(name: BluetoothCharacteristicUUID) -> Fallible { resolve_uuid_name(name, BLUETOOTH_ASSIGNED_CHARCTERISTICS, CHARACTERISTIC_PREFIX) }