From 1d2889746d9ffb8399396d679c3708bbb3d6c205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Sat, 15 Jan 2022 14:30:38 +0100 Subject: [PATCH] Sprinkle some commas for readability. --- .../java/li/cil/oc2/api/bus/device/rpc/RPCDevice.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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