diff --git a/src/PepperDash.Essentials.MobileControl/MobileControlSystemController.cs b/src/PepperDash.Essentials.MobileControl/MobileControlSystemController.cs
index d2aef597..1012abe8 100644
--- a/src/PepperDash.Essentials.MobileControl/MobileControlSystemController.cs
+++ b/src/PepperDash.Essentials.MobileControl/MobileControlSystemController.cs
@@ -110,7 +110,9 @@ namespace PepperDash.Essentials
///
public string SystemUrl; //set only from SIMPL Bridge!
- ///
+ ///
+ /// True if the Mobile Control Edge Server Websocket is connected
+ ///
public bool Connected => _wsClient2 != null && _wsClient2.IsAlive;
private IEssentialsRoomCombiner _roomCombiner;
diff --git a/src/PepperDash.Essentials.MobileControl/Touchpanel/ITswZoomControlMessenger.cs b/src/PepperDash.Essentials.MobileControl/Touchpanel/ITswZoomControlMessenger.cs
index 13d1dc59..bbf4030e 100644
--- a/src/PepperDash.Essentials.MobileControl/Touchpanel/ITswZoomControlMessenger.cs
+++ b/src/PepperDash.Essentials.MobileControl/Touchpanel/ITswZoomControlMessenger.cs
@@ -8,14 +8,14 @@ using PepperDash.Essentials.AppServer.Messengers;
namespace PepperDash.Essentials.Touchpanel
{
///
- /// Messenger to handle
+ /// Messenger to handle Zoom status and control for a TSW panel that supports the Zoom Application
///
public class ITswZoomControlMessenger : MessengerBase
{
private readonly ITswZoomControl _zoomControl;
///
- /// Create in instance of the class for the given device
+ /// Create an instance of the class for the given device
///
/// The key for this messenger
/// The message path for this messenger
diff --git a/src/PepperDash.Essentials.MobileControl/Utilities.cs b/src/PepperDash.Essentials.MobileControl/Utilities.cs
index 83ebc5bc..8c2abf3e 100644
--- a/src/PepperDash.Essentials.MobileControl/Utilities.cs
+++ b/src/PepperDash.Essentials.MobileControl/Utilities.cs
@@ -12,9 +12,9 @@ namespace PepperDash.Essentials
private static int nextClientId = 0;
///
- /// Get
+ /// Get the next unique client ID
///
- ///
+ /// Client ID
public static int GetNextClientId()
{
nextClientId++;
diff --git a/src/PepperDash.Essentials.MobileControl/WebApiHandlers/MobileInfoHandler.cs b/src/PepperDash.Essentials.MobileControl/WebApiHandlers/MobileInfoHandler.cs
index 363076c0..676fd3c8 100644
--- a/src/PepperDash.Essentials.MobileControl/WebApiHandlers/MobileInfoHandler.cs
+++ b/src/PepperDash.Essentials.MobileControl/WebApiHandlers/MobileInfoHandler.cs
@@ -72,7 +72,7 @@ namespace PepperDash.Essentials.WebApiHandlers
public MobileControlDirectServer DirectServer => mcController.Config.DirectServer.EnableDirectServer ? new MobileControlDirectServer(mcController.DirectServer) : null;
///
- /// Create in instace of the class.
+ /// Create an instance of the class.
///
///
public InformationResponse(MobileControlSystemController controller)
diff --git a/src/PepperDash.Essentials.MobileControl/WebSocketServer/ConnectionClosedEventArgs.cs b/src/PepperDash.Essentials.MobileControl/WebSocketServer/ConnectionClosedEventArgs.cs
index 6d877d07..617cc6d6 100644
--- a/src/PepperDash.Essentials.MobileControl/WebSocketServer/ConnectionClosedEventArgs.cs
+++ b/src/PepperDash.Essentials.MobileControl/WebSocketServer/ConnectionClosedEventArgs.cs
@@ -13,7 +13,7 @@ namespace PepperDash.Essentials.WebSocketServer
public string ClientId { get; private set; }
///
- /// Initalize an instance of the class.
+ /// Initialize an instance of the class.
///
/// client that's closing
public ConnectionClosedEventArgs(string clientId)
diff --git a/src/PepperDash.Essentials.MobileControl/WebSocketServer/UiClient.cs b/src/PepperDash.Essentials.MobileControl/WebSocketServer/UiClient.cs
index 83696ef2..e4e8a47d 100644
--- a/src/PepperDash.Essentials.MobileControl/WebSocketServer/UiClient.cs
+++ b/src/PepperDash.Essentials.MobileControl/WebSocketServer/UiClient.cs
@@ -74,7 +74,7 @@ namespace PepperDash.Essentials.WebSocketServer
///
/// The unique key to identify this client
/// The client ID used by the client for this connection
- ///
+ /// The token associated with this client
public UiClient(string key, string id, string token)
{
Key = key;
diff --git a/src/PepperDash.Essentials.MobileControl/WebSocketServer/Version.cs b/src/PepperDash.Essentials.MobileControl/WebSocketServer/Version.cs
index 1255f624..9380e54d 100644
--- a/src/PepperDash.Essentials.MobileControl/WebSocketServer/Version.cs
+++ b/src/PepperDash.Essentials.MobileControl/WebSocketServer/Version.cs
@@ -25,7 +25,7 @@ namespace PepperDash.Essentials.WebSocketServer
/// Initialize an instance of the class
///
///
- /// the property is set to true by default.
+ /// The property is set to true by default.
///
public Version()
{