From 430874dd5060e51586bef44a9c3a618f69c8d824 Mon Sep 17 00:00:00 2001 From: Lukas Schachner Date: Sat, 12 Aug 2023 14:10:04 +0200 Subject: [PATCH] fix(docu): typo in ModbusClient.ReadDiscreteInputs --- src/FluentModbus/Client/ModbusClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FluentModbus/Client/ModbusClient.cs b/src/FluentModbus/Client/ModbusClient.cs index cc51224..f70a548 100644 --- a/src/FluentModbus/Client/ModbusClient.cs +++ b/src/FluentModbus/Client/ModbusClient.cs @@ -251,7 +251,7 @@ public Span ReadCoils(int unitIdentifier, int startingAddress, int quantit } /// - /// Reads the specified number of discrete inputs as byte array. Each bit of the returned array represents a single discete input. + /// Reads the specified number of discrete inputs as byte array. Each bit of the returned array represents a single discrete input. /// /// The unit identifier is used to communicate via devices such as bridges, routers and gateways that use a single IP address to support multiple independent Modbus end units. Thus, the unit identifier is the address of a remote slave connected on a serial line or on other buses. Use the default values 0x00 or 0xFF when communicating to a Modbus server that is directly connected to a TCP/IP network. /// The discrete input start address for the read operation.