Skip to content

Commit a7f2aba

Browse files
Fixed UnPark -> Unpark
1 parent 5dc434e commit a7f2aba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ASCOM.Alpaca.Simulators/Controllers/TelescopeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ public ActionResult<BoolResponse> CanSyncAltAz(
604604
/// Indicates whether the telescope can be unparked.
605605
/// </summary>
606606
/// <remarks>
607-
/// <para>True if this telescope is capable of programmed unparking (UnPark() method)</para>
607+
/// <para>True if this telescope is capable of programmed unparking (Unpark() method)</para>
608608
/// </remarks>
609609
/// <param name="DeviceNumber">Zero based device number as set on the server (A uint32 with a range of 0 to 4294967295)</param>
610610
/// <param name="ClientID">Client's unique ID.</param>

TelescopeSimulator/Telescope.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public bool CanUnpark
454454
{
455455
get
456456
{
457-
SharedResources.TrafficLine(SharedResources.MessageType.Capabilities, "CanUnPark: " + TelescopeHardware.CanUnpark);
457+
SharedResources.TrafficLine(SharedResources.MessageType.Capabilities, "CanUnpark: " + TelescopeHardware.CanUnpark);
458458
return TelescopeHardware.CanUnpark;
459459
}
460460
}
@@ -1285,8 +1285,8 @@ public DateTime UTCDate
12851285

12861286
public void Unpark()
12871287
{
1288-
SharedResources.TrafficStart(SharedResources.MessageType.Slew, "UnPark: ");
1289-
CheckCapability(TelescopeHardware.CanUnpark, "UnPark");
1288+
SharedResources.TrafficStart(SharedResources.MessageType.Slew, "Unpark: ");
1289+
CheckCapability(TelescopeHardware.CanUnpark, "Unpark");
12901290

12911291
TelescopeHardware.ChangePark(false);
12921292
TelescopeHardware.Tracking = true;

0 commit comments

Comments
 (0)