Typos a/an (#13876)

This commit is contained in:
Дилян Палаузов
2022-12-08 22:12:49 +02:00
committed by GitHub
parent 177ce2a217
commit 0ffc5257d5
140 changed files with 166 additions and 166 deletions

View File

@@ -137,7 +137,7 @@ public class VeluxRSBindingConfig extends VeluxBindingConfig {
}
/**
* Returns the next shutter level for an DOWN command w/ adjusting the actual position.
* Returns the next shutter level for a DOWN command w/ adjusting the actual position.
*
* @return <b>rollershutterLevel</b> of type Integer with next position after DOWN command.
*/

View File

@@ -32,7 +32,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This is an wrapper around {@link java.io.InputStream} to support socket receive operations.
* This is a wrapper around {@link java.io.InputStream} to support socket receive operations.
*
* It implements a secondary polling thread to asynchronously read bytes from the socket input stream into a buffer. And
* it parses the bytes into SLIP messages, which are placed on a message queue. Callers can access the SLIP messages in

View File

@@ -112,7 +112,7 @@ public class VeluxGwState {
private int stateValue;
private String stateDescription;
// Reverse-lookup map for getting a VeluxGatewayState from an TypeId
// Reverse-lookup map for getting a VeluxGatewayState from a TypeId
private static final Map<Integer, VeluxGatewaySubState> LOOKUPTYPEID2ENUM = Stream
.of(VeluxGatewaySubState.values())
.collect(Collectors.toMap(VeluxGatewaySubState::getStateValue, Function.identity()));

View File

@@ -47,7 +47,7 @@ public class VeluxKLFAPI {
// Constants
/**
* System table index parameter - an be a number from 0 to 203.
* System table index parameter - a number from 0 to 203.
*
* See <a href=
* "https://velcdn.azureedge.net/~/media/com/api/klf200/technical%20specification%20for%20klf%20200%20api.pdf#page=25">KLF200
@@ -318,7 +318,7 @@ public class VeluxKLFAPI {
private CommandNumber command;
private String description;
// Reverse-lookup map for getting a Command from an TypeId
// Reverse-lookup map for getting a Command from a TypeId
private static final Map<Short, Command> LOOKUPTYPEID2ENUM = Stream.of(Command.values())
.collect(Collectors.toMap(Command::getShort, Function.identity()));

View File

@@ -88,7 +88,7 @@ public class VeluxProduct {
}
/**
* Create an ProductState from an integer seed value.
* Create a ProductState from an integer seed value.
*
* @param value the seed value.
* @return the ProductState.

View File

@@ -83,7 +83,7 @@ public enum VeluxProductType {
private String description;
private VeluxProductType typeClass;
// Reverse-lookup map for getting an ActuatorType from an TypeId
// Reverse-lookup map for getting an ActuatorType from a TypeId
private static final Map<Integer, ActuatorType> LOOKUPTYPEID2ENUM = Stream.of(ActuatorType.values())
.collect(Collectors.toMap(ActuatorType::getNodeType, Function.identity()));