From 97a7bccec9936756cee00a3bed57a7f3b6a8fd07 Mon Sep 17 00:00:00 2001 From: Joe Birr-Pixton Date: Fri, 27 Sep 2024 13:48:49 +0100 Subject: [PATCH] Fix documentation referring to private item --- src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e051822..2c1be83 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,9 +29,8 @@ //! from a slice, or from an `std::io` stream. //! //! There is also a lower-level API that allows a given PEM file to be fully consumed -//! in one pass, even if it contains different data types: see [`pem::from_slice()`] -//! and the implementation of the [`pem::PemObject`] trait on the `(pem::SectionKind, Vec)` -//! tuple. +//! in one pass, even if it contains different data types: see the implementation of +//! the [`pem::PemObject`] trait on the `(pem::SectionKind, Vec)` tuple. //! //! ## Creating new certificates and keys //!