cpacfinfo and pv: Fix comment style

Reviewed-by: Finn Callies <fcallies@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2025-10-28 15:29:18 +01:00
committed by Jan Höppner
parent f74b8d7d6f
commit b21a824fda
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -104,11 +104,11 @@ impl<'d> InnerPem<'d> {
/// println!("PEM {pem}");
/// ```
/// ```PEM
///-----BEGIN <name>-----
///<header>
/// -----BEGIN <name>-----
/// <header>
///
///<Base64 formatted binary data>
///-----END <name>-----
/// <Base64 formatted binary data>
/// -----END <name>-----
#[derive(Debug)]
pub struct Pem {
+4 -4
View File
@@ -18,11 +18,11 @@ use zerocopy::{FromBytes, U16};
///
/// Will convert into PEM as:
/// ```PEM
///-----BEGIN IBM PROTECTED KEY-----
///kind: <name>
/// -----BEGIN IBM PROTECTED KEY-----
/// kind: <name>
///
///<protected key in base64>
///-----END IBM PROTECTED KEY-----
/// <protected key in base64>
/// -----END IBM PROTECTED KEY-----
/// ```
#[derive(Debug, PartialEq, Eq)]
pub struct IbmProtectedKey {