diff options
Diffstat (limited to 'components/script/dom/bluetoothuuid.rs')
-rw-r--r-- | components/script/dom/bluetoothuuid.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/bluetoothuuid.rs b/components/script/dom/bluetoothuuid.rs index 07156684fdc..21ca00776d5 100644 --- a/components/script/dom/bluetoothuuid.rs +++ b/components/script/dom/bluetoothuuid.rs @@ -667,10 +667,10 @@ fn resolve_uuid_name( _ => unreachable!(), }; // Step 4. - return Err(Type(format!( + Err(Type(format!( "Invalid {} name : '{}'.\n{} {}", attribute_type, dstring, UUID_ERROR_MESSAGE, error_url_message - ))); + ))) }, } } |