]> git.proxmox.com Git - pve-installer.git/commitdiff
tui: fix some comment typos
authorChristoph Heiss <c.heiss@proxmox.com>
Thu, 13 Jun 2024 11:53:10 +0000 (13:53 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 4 Jul 2024 09:24:12 +0000 (11:24 +0200)
Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
Reviewed-by: Max Carrara <m.carrara@proxmox.com>
Tested-by: Max Carrara <m.carrara@proxmox.com>
proxmox-tui-installer/src/views/bootdisk.rs

index f6fdb31a7ad8be5a55bf000fb0b2194e103768fb..1c7b2a4ccb2c529195265da7ce08d88d9f6328d3 100644 (file)
@@ -29,7 +29,7 @@ use proxmox_installer_common::{
 /// https://openzfs.github.io/openzfs-docs/Performance%20and%20Tuning/Module%20Parameters.html#zfs-arc-max
 const ZFS_ARC_MIN_SIZE_MIB: usize = 64; // MiB
 
-/// Convience wrapper when needing to take a (interior-mutable) reference to `BootdiskOptions`.
+/// Convenience wrapper when needing to take a (interior-mutable) reference to `BootdiskOptions`.
 /// Interior mutability is safe for this case, as it is completely single-threaded.
 pub type BootdiskOptionsRef = Rc<RefCell<BootdiskOptions>>;
 
@@ -165,9 +165,9 @@ impl AdvancedBootdiskOptionsView {
         Self { view }
     }
 
-    /// Called when a new filesystem type is choosen by the user.
+    /// Called when a new filesystem type is chosen by the user.
     /// It first creates the inner (filesystem-specific) options view according to the selected
-    /// filesytem type.
+    /// filesystem type.
     /// Further, it replaces the (outer) bootdisk selector in the main dialog, either with a
     /// selector for LVM configurations or a simple label displaying the chosen RAID for ZFS and
     /// Btrfs configurations.