diff --git a/DiscImageChef.DiscImages/DiskCopy42.cs b/DiscImageChef.DiscImages/DiskCopy42.cs index 0f083508..3110cf7b 100644 --- a/DiscImageChef.DiscImages/DiskCopy42.cs +++ b/DiscImageChef.DiscImages/DiskCopy42.cs @@ -81,7 +81,7 @@ namespace DiscImageChef.DiscImages const byte kSonyFormat720K = 0x02; /// 3.5", double side, high density, MFM const byte kSonyFormat1440K = 0x03; - /// 3.5", double side, high density, MFM, 21 sectors/track (aka, Microsoft DMF) + /// 3.5", double side, high density, MFM, 21 sectors/track (aka, Microsoft DMF) // Unchecked value const byte kSonyFormat1680K = 0x04; /// Defined by Sigma Seven's BLU diff --git a/DiscImageChef.Filesystems/CPM/Structs.cs b/DiscImageChef.Filesystems/CPM/Structs.cs index 9524439c..fc033171 100644 --- a/DiscImageChef.Filesystems/CPM/Structs.cs +++ b/DiscImageChef.Filesystems/CPM/Structs.cs @@ -491,7 +491,7 @@ namespace DiscImageChef.Filesystems.CPM } /// - /// Directory entry for &bt;256 allocation blocks + /// Directory entry for >256 allocation blocks /// [StructLayout(LayoutKind.Sequential, Pack = 1)] struct DirectoryEntry16 diff --git a/DiscImageChef.Filesystems/FAT.cs b/DiscImageChef.Filesystems/FAT.cs index 07f6fd81..a5ba3400 100644 --- a/DiscImageChef.Filesystems/FAT.cs +++ b/DiscImageChef.Filesystems/FAT.cs @@ -1381,7 +1381,7 @@ namespace DiscImageChef.Filesystems [MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)] public byte[] jump; /// OEM Name, 6 bytes, space-padded, "Loader" for Atari ST boot loader [MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)] public byte[] oem_name; - /// Volume serial number + /// Volume serial number [MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)] public byte[] serial_no; /// Bytes per sector public ushort bps; @@ -1469,9 +1469,9 @@ namespace DiscImageChef.Filesystems [MarshalAs(UnmanagedType.ByValArray, SizeConst = 11)] public byte[] vol_id; /// Bigger than 0 if there are deleted files (MSX-DOS 2) public byte undelete_flag; - /// Volume serial number (MSX-DOS 2) + /// Volume serial number (MSX-DOS 2) public uint serial_no; - /// Reserved (MSX-DOS 2) + /// Reserved (MSX-DOS 2) [MarshalAs(UnmanagedType.ByValArray, SizeConst = 5)] public byte[] reserved; /// Jump for MSX-DOS 2 boot code (MSX-DOS 2) public ushort msxdos2_jmp; @@ -1655,13 +1655,13 @@ namespace DiscImageChef.Filesystems public uint hsectors; /// Sectors in volume if > 65535 public uint big_sectors; - /// Drive number + /// Drive number public byte drive_no; - /// Volume flags + /// Volume flags public byte flags; - /// EPB signature, 0x28 + /// EPB signature, 0x28 public byte signature; - /// Volume serial number + /// Volume serial number public uint serial_no; /// Boot code. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 467)] public byte[] boot_code; @@ -1701,17 +1701,17 @@ namespace DiscImageChef.Filesystems public uint hsectors; /// Sectors in volume if > 65535 public uint big_sectors; - /// Drive number + /// Drive number public byte drive_no; - /// Volume flags + /// Volume flags public byte flags; - /// EPB signature, 0x29 + /// EPB signature, 0x29 public byte signature; - /// Volume serial number + /// Volume serial number public uint serial_no; - /// Volume label, 11 bytes, space-padded + /// Volume label, 11 bytes, space-padded [MarshalAs(UnmanagedType.ByValArray, SizeConst = 11)] public byte[] volume_label; - /// Filesystem type, 8 bytes, space-padded + /// Filesystem type, 8 bytes, space-padded [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] public byte[] fs_type; /// Boot code. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 448)] public byte[] boot_code;