servo: Merge #14469 - Fix BluetoothUUID typo (from szeged:uuid_fix); r=KiChjang

<!-- Please describe your changes on the following line: -->

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors

<!-- Either: -->
- [X] There are tests for these changes

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: ce59cdd90b72354ec1f266ce00c18be422527648
This commit is contained in:
Attila Dusnoki 2016-12-06 08:38:58 -08:00
Родитель 8c24dd36ff
Коммит f37008356a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)
}