Fix a typo in dom/bluetooth.rs

This commit is contained in:
Zakor Gyula 2016-11-14 11:15:13 +01:00
parent b63c85c31b
commit 30f924d8f6

View file

@ -194,7 +194,7 @@ fn convert_request_device_options(filters: &Option<Vec<BluetoothRequestDeviceFil
// Step 2.7.
// Note: What we are doing here is adding the not blacklisted UUIDs to the result vector,
// insted of removing them from an already filled vector.
// instead of removing them from an already filled vector.
if !uuid_is_blacklisted(uuid.as_ref(), Blacklist::All) {
optional_services_uuids.push(uuid);
}