diff --git a/src/main/java/li/cil/oc2/api/bus/device/rpc/RPCDevice.java b/src/main/java/li/cil/oc2/api/bus/device/rpc/RPCDevice.java index c9574735..f88ccb72 100644 --- a/src/main/java/li/cil/oc2/api/bus/device/rpc/RPCDevice.java +++ b/src/main/java/li/cil/oc2/api/bus/device/rpc/RPCDevice.java @@ -9,13 +9,13 @@ import java.util.List; * Provides an interface for an RPC device, describing the methods that can be * called on it and the type names it can be detected by/is compatible with. *
- * A {@link RPCDevice} may represent a single view onto some device or be a + * A {@link RPCDevice} may represent a single view onto some device, or be a * collection of multiple aggregated {@link RPCDevice}s. One underlying device - * may have multiple {@link RPCDevice}s providing different methods for the - * device. This allows specifying general purpose interfaces which provide logic - * for some aspect of an underlying device which may be shared with other devices. + * may have multiple {@link RPCDevice}s, providing different methods for the + * device. This allows specifying general purpose interfaces, which provide logic + * for some aspect of an underlying device, which may be shared with other devices. *
- * The easiest and hence recommended way of implementing this interface is to use + * The easiest, and hence recommended, way of implementing this interface, is to use * the {@link ObjectDevice} class. * * @see ObjectDevice