Fixed spelling mistake

This commit is contained in:
2020-05-24 16:39:09 +01:00
parent bd8476e11a
commit 1e59d5610e
+3 -3
View File
@@ -1874,9 +1874,9 @@ namespace ASCOM.Meade.net
throw new InvalidOperationException(belowMinimumElevationMessage);
case "3":
//Telescope can hit the mount
string canHistMountMessage = _sharedResourcesWrapper.ReadTerminated();
LogMessage("DoSlewAsync", $"Slew failed \"{canHistMountMessage}\"");
throw new InvalidOperationException(canHistMountMessage);
string canHitMountMessage = _sharedResourcesWrapper.ReadTerminated();
LogMessage("DoSlewAsync", $"Slew failed \"{canHitMountMessage}\"");
throw new InvalidOperationException(canHitMountMessage);
default:
LogMessage("DoSlewAsync", $"Slew failed - unknown response \"{response}\"");
throw new DriverException("This error should not happen");