diff --git a/extendr-api/src/robj/into_robj.rs b/extendr-api/src/robj/into_robj.rs index 02c62d865e..7578c3bef0 100644 --- a/extendr-api/src/robj/into_robj.rs +++ b/extendr-api/src/robj/into_robj.rs @@ -141,10 +141,10 @@ impl From<&Robj> for Robj { } } -/// This is an extension trait to provide a convenience method `into_robj()`. -/// -/// Defer to `From for Robj`-impls if you have custom types. -/// +/// This is an extension trait to provide a convenience method `into_robj()`. +/// +/// Defer to `From for Robj`-impls if you have custom types. +/// pub trait IntoRobj { fn into_robj(self) -> Robj; } diff --git a/tests/extendrtests/src/rust/src/lib.rs b/tests/extendrtests/src/rust/src/lib.rs index 72f145d75b..943e746425 100644 --- a/tests/extendrtests/src/rust/src/lib.rs +++ b/tests/extendrtests/src/rust/src/lib.rs @@ -269,7 +269,6 @@ impl MyClass { } } - /// Class for testing (exported) (use_try_from) /// @examples /// x <- MyClass2$new()