Skip to content

Commit f3b7eb5

Browse files
committed
Delete stray semicolons
1 parent d6196dc commit f3b7eb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MIGRATION_GUIDE_0.10.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ let length = obj.get(&mut cx, "length")?;
5252
let length: Option<Handle<JsNumber>> = if length.is_a::<JsNull, _>(&mut cx) {
5353
None
5454
} else {
55-
Some(length.downcast_or_throw(&mut cx)?);
55+
Some(length.downcast_or_throw(&mut cx)?)
5656
};
5757
```
5858

@@ -63,7 +63,7 @@ let length = obj.get_value(&mut cx, "length")?;
6363
let length: Option<Handle<JsNumber>> = if length.is_a::<JsNull, _>(&mut cx) {
6464
None
6565
} else {
66-
Some(length.downcast_or_throw(&mut cx)?);
66+
Some(length.downcast_or_throw(&mut cx)?)
6767
};
6868
```
6969

0 commit comments

Comments
 (0)