Skip to content

Commit 901faa9

Browse files
committed
fix: lint
1 parent 73a49a6 commit 901faa9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/value/value.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ use super::OwnedJsObject;
2828
/// OwnedJsValue wraps a Javascript value owned by the QuickJs runtime.
2929
///
3030
/// Guarantees cleanup of resources by dropping the value from the runtime.
31-
///
31+
///
3232
/// **Safety**:
33-
///
33+
///
3434
/// This type is `Send` and `Sync` only for convenience, since [OwnedJsValue](crate::OwnedJsValue)
3535
/// itself is just a wrapper around a raw pointer. But any operation on the underlying raw pointer is unsafe.
3636
/// Make sure using it in a same thread.
37-
///
37+
///
3838
pub struct OwnedJsValue {
3939
context: *mut q::JSContext,
4040
// FIXME: make private again, just for testing

0 commit comments

Comments
 (0)