Fix typo in asymmetrical. Fixes #311

This commit is contained in:
2020-04-03 02:43:53 +01:00
parent eddf460b12
commit cb36d0d527

View File

@@ -352,19 +352,19 @@ namespace Aaru.Decoders.SCSI
switch((TGPSValues)response.TPGS) switch((TGPSValues)response.TPGS)
{ {
case TGPSValues.NotSupported: case TGPSValues.NotSupported:
sb.AppendLine("Device does not support assymetrical access"); sb.AppendLine("Device does not support asymmetrical access");
break; break;
case TGPSValues.OnlyImplicit: case TGPSValues.OnlyImplicit:
sb.AppendLine("Device only supports implicit assymetrical access"); sb.AppendLine("Device only supports implicit asymmetrical access");
break; break;
case TGPSValues.OnlyExplicit: case TGPSValues.OnlyExplicit:
sb.AppendLine("Device only supports explicit assymetrical access"); sb.AppendLine("Device only supports explicit asymmetrical access");
break; break;
case TGPSValues.Both: case TGPSValues.Both:
sb.AppendLine("Device supports implicit and explicit assymetrical access"); sb.AppendLine("Device supports implicit and explicit asymmetrical access");
break; break;
default: default: