From cb36d0d527c30528e92bdbe32579d52f6ec358da Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 3 Apr 2020 02:43:53 +0100 Subject: [PATCH] Fix typo in asymmetrical. Fixes #311 --- SCSI/Inquiry.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SCSI/Inquiry.cs b/SCSI/Inquiry.cs index 41c7f34d1..c54420f11 100644 --- a/SCSI/Inquiry.cs +++ b/SCSI/Inquiry.cs @@ -352,19 +352,19 @@ namespace Aaru.Decoders.SCSI switch((TGPSValues)response.TPGS) { case TGPSValues.NotSupported: - sb.AppendLine("Device does not support assymetrical access"); + sb.AppendLine("Device does not support asymmetrical access"); break; case TGPSValues.OnlyImplicit: - sb.AppendLine("Device only supports implicit assymetrical access"); + sb.AppendLine("Device only supports implicit asymmetrical access"); break; case TGPSValues.OnlyExplicit: - sb.AppendLine("Device only supports explicit assymetrical access"); + sb.AppendLine("Device only supports explicit asymmetrical access"); break; case TGPSValues.Both: - sb.AppendLine("Device supports implicit and explicit assymetrical access"); + sb.AppendLine("Device supports implicit and explicit asymmetrical access"); break; default: