From e1d18942dcf76dfcc56d5344e0c632c0e8a1ba01 Mon Sep 17 00:00:00 2001 From: Alex Helfet Date: Sat, 21 Nov 2020 19:30:57 +0000 Subject: [PATCH] Fix the breakage I added to test warnings. --- framed/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framed/src/lib.rs b/framed/src/lib.rs index eb2955c..728ad5a 100644 --- a/framed/src/lib.rs +++ b/framed/src/lib.rs @@ -251,7 +251,7 @@ impl Deref for BoxPayload { } } -// Heap-allocated frame data used as a return type. +/// Heap-allocated frame data used as a return type. #[cfg(feature = "use_std")] #[derive(Debug)] pub struct BoxEncoded(Vec);