From 6db59eaef1e92d8a30174eec171095aa1925bf0b Mon Sep 17 00:00:00 2001 From: Colin Dawson Date: Thu, 10 Nov 2022 17:57:21 +0000 Subject: [PATCH] Corrected Typo in name --- Meade.net.Telescope/Telescope.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meade.net.Telescope/Telescope.cs b/Meade.net.Telescope/Telescope.cs index 54675b5..3850792 100644 --- a/Meade.net.Telescope/Telescope.cs +++ b/Meade.net.Telescope/Telescope.cs @@ -3427,11 +3427,11 @@ namespace ASCOM.Meade.net string dms; try { - dms = SetTargetDeslination(value, SharedResourcesWrapper.IsLongFormat); + dms = SetTargetDeclination(value, SharedResourcesWrapper.IsLongFormat); } catch (InvalidOperationException) { - dms = SetTargetDeslination(value, !SharedResourcesWrapper.IsLongFormat); + dms = SetTargetDeclination(value, !SharedResourcesWrapper.IsLongFormat); } SharedResourcesWrapper.TargetDeclination = _utilities.DMSToDegrees(dms); @@ -3444,7 +3444,7 @@ namespace ASCOM.Meade.net } } - private string SetTargetDeslination(double value, bool useLongFormat) + private string SetTargetDeclination(double value, bool useLongFormat) { var dms = useLongFormat ? _utilities.DegreesToDMS(value, "*", ":", ":", _digitsDe)