From b9553f486a90d512d14b25cdd367e1d5a962cf23 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 28 Apr 2025 11:24:13 -0500 Subject: [PATCH] docs: use correct capitalization for SSH Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/docs/Communication-Basics.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docs/Communication-Basics.md b/docs/docs/Communication-Basics.md index 24897677..604e7159 100644 --- a/docs/docs/Communication-Basics.md +++ b/docs/docs/Communication-Basics.md @@ -1,7 +1,6 @@ # Unifying communication methods -In networked A/V systems, devices can use many different methods of communication: COM ports, TCP/IP sockets, Telnet, SSh. Generally, the data protocol and commands that are sent and received using any of these methods are the same, and it is not necessary for a device to know the details of the communication method it is using. A Samsung MDC protocol display in room 1 using RS232 speaks the same language as another Samsung MDC does in the next room using TCP/IP. For these, and most cases where the device doesn't need to know its communication method, we introduce the `IBasicCommunication` interface. - +In networked A/V systems, devices can use many different methods of communication: COM ports, TCP/IP sockets, Telnet, SSH. Generally, the data protocol and commands that are sent and received using any of these methods are the same, and it is not necessary for a device to know the details of the communication method it is using. A Samsung MDC protocol display in room 1 using RS232 speaks the same language as another Samsung MDC does in the next room using TCP/IP. For these, and most cases where the device doesn't need to know its communication method, we introduce the `IBasicCommunication` interface. ## Classes Referenced * `PepperDash.Core.IBasicCommunication`