mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 07:14:50 +01:00
fix: make clippy happy
This commit is contained in:
parent
306a687354
commit
6d5a703369
1 changed files with 1 additions and 1 deletions
|
@ -52,6 +52,6 @@ impl CursorController {
|
||||||
/// Block until next
|
/// Block until next
|
||||||
#[napi(js_name = "recv")]
|
#[napi(js_name = "recv")]
|
||||||
pub async fn js_recv(&self) -> napi::Result<crate::api::Cursor> {
|
pub async fn js_recv(&self) -> napi::Result<crate::api::Cursor> {
|
||||||
Ok(self.recv().await?.into())
|
Ok(self.recv().await?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue