Skip to content
This repository was archived by the owner on Nov 12, 2022. It is now read-only.

Commit a28e3e7

Browse files
committed
Fix a double space
1 parent fdaa1a0 commit a28e3e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conversions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ unsafe fn convert_int_from_jsval<T, M>(cx: *mut JSContext, value: HandleValue,
239239
// https://heycam.github.io/webidl/#es-boolean
240240
impl ToJSValConvertible for bool {
241241
#[inline]
242-
unsafe fn to_jsval(&self, _cx: *mut JSContext, mut rval: MutableHandleValue) {
242+
unsafe fn to_jsval(&self, _cx: *mut JSContext, mut rval: MutableHandleValue) {
243243
rval.set(BooleanValue(*self));
244244
}
245245
}

0 commit comments

Comments
 (0)