Update lib/js-api/src/cell.rs

This commit is contained in:
Syrus Akbary
2021-07-17 18:06:57 -05:00
committed by GitHub
parent a589020817
commit 2912d20892

View File

@@ -75,7 +75,7 @@ impl<'a, T> WasmCell<'a, T> {
///
/// ```
/// use std::cell::Cell;
/// use wasmer::WasmCell;
/// use wasmer_js::WasmCell;
///
/// let cell = Cell::new(5);
/// let wasm_cell = WasmCell::new(&cell);