From 6bd2a80185412d2f47eb6729395d7b75cee39e10 Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Thu, 2 May 2024 21:47:02 +0200 Subject: [PATCH] Fix empty doc comment that trips up newer clippy --- rustler/src/env.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rustler/src/env.rs b/rustler/src/env.rs index 4492151e..fcb87f92 100644 --- a/rustler/src/env.rs +++ b/rustler/src/env.rs @@ -30,7 +30,8 @@ impl<'a, 'b> PartialEq> for Env<'a> { } } -/// +/// Indicates that a send failed, see +/// [enif\_send](https://www.erlang.org/doc/man/erl_nif.html#enif_send). #[derive(Clone, Copy, Debug)] pub struct SendError;