From d0c4af0e266e6a86ee5bd644da7d222fe56b22da Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 6 Dec 2022 08:26:59 +1100 Subject: [PATCH] Add newline after docs heading As is customary add a newline between rustdoc heading and content. Done so that the code is identical to other released code (during backport the space was added). --- src/context.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/context.rs b/src/context.rs index 618ee1d..10a2210 100644 --- a/src/context.rs +++ b/src/context.rs @@ -311,6 +311,7 @@ unsafe impl<'buf> Context for AllPreallocated<'buf> { /// memory that must outlive `'a` /// /// # Safety +/// /// This trait is used internally to gate which context markers can safely /// be used with the `preallocated_gen_new` function. Do not implement it /// on your own structures.