diff --git a/Structs/Devices/SCSI/Enums.cs b/Structs/Devices/SCSI/Enums.cs index 017b184fb..4f438bb2e 100644 --- a/Structs/Devices/SCSI/Enums.cs +++ b/Structs/Devices/SCSI/Enums.cs @@ -152,13 +152,13 @@ namespace Aaru.CommonTypes.Structs.Devices.SCSI [SuppressMessage("ReSharper", "InconsistentNaming")] public enum TGPSValues : byte { - /// Assymetrical access not supported + /// Asymmetrical access not supported NotSupported = 0x00, - /// Only implicit assymetrical access is supported + /// Only implicit asymmetrical access is supported OnlyImplicit = 0x01, - /// Only explicit assymetrical access is supported + /// Only explicit asymmetrical access is supported OnlyExplicit = 0x02, - /// Both implicit and explicit assymetrical access are supported + /// Both implicit and explicit asymmetrical access are supported Both = 0x03 }