]> git.proxmox.com Git - pxar.git/commitdiff
format/examples: Fix typo in PXAR_PAYLOAD description
authorChristian Ebner <c.ebner@proxmox.com>
Wed, 28 Feb 2024 14:01:51 +0000 (15:01 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 28 Feb 2024 18:09:31 +0000 (19:09 +0100)
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
examples/mk-format-hashes.rs
src/format/mod.rs

index 1ad606c939da4867719df6d862a4938fd983d90d..6e00654dbc59d63e7e746593d5586d508305985d 100644 (file)
@@ -37,7 +37,7 @@ const CONSTANTS: &[(&str, &str, &str)] = &[
         "__PROXMOX_FORMAT_HARDLINK__",
     ),
     (
-        "Marks the beginnig of the payload (actual content) of regular files",
+        "Marks the beginning of the payload (actual content) of regular files",
         "PXAR_PAYLOAD",
         "__PROXMOX_FORMAT_PXAR_PAYLOAD__",
     ),
index 72a193c3106112fd67ecf641bf144de5b5321024..bfea9f606d9b4bd00e01cd47b37ab10a3ce80ddc 100644 (file)
@@ -97,7 +97,7 @@ pub const PXAR_FCAPS: u64 = 0x2da9dd9db5f7fb67;
 pub const PXAR_QUOTA_PROJID: u64 = 0xe07540e82f7d1cbb;
 /// Marks item as hardlink
 pub const PXAR_HARDLINK: u64 = 0x51269c8422bd7275;
-/// Marks the beginnig of the payload (actual content) of regular files
+/// Marks the beginning of the payload (actual content) of regular files
 pub const PXAR_PAYLOAD: u64 = 0x28147a1b0b7c1a25;
 /// Marks item as entry of goodbye table
 pub const PXAR_GOODBYE: u64 = 0x2fec4fa642d5731d;