From 66147174cc822ca52fed476177ee6b9d2e314e21 Mon Sep 17 00:00:00 2001 From: Robinson Date: Wed, 1 Mar 2023 22:39:38 +0100 Subject: [PATCH] Updated comments --- src/dorkbox/network/Server.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dorkbox/network/Server.kt b/src/dorkbox/network/Server.kt index e6c5be58..9534fe4c 100644 --- a/src/dorkbox/network/Server.kt +++ b/src/dorkbox/network/Server.kt @@ -85,7 +85,7 @@ open class Server( * The server can only be accessed in an ASYNC manner. This means that the server can only be used in RESPONSE to events. If you access the * server OUTSIDE of events, you will get inaccurate information from the server (such as getConnections()) * - * To put it bluntly, ONLY have the server do work inside of a listener! + * To put it bluntly, ONLY have the server do work inside a listener! * * @param config these are the specific connection options * @param loggerName allows for a custom logger name for this endpoint (for when there are multiple endpoints) @@ -103,7 +103,7 @@ open class Server( * The server can only be accessed in an ASYNC manner. This means that the server can only be used in RESPONSE to events. If you access the * server OUTSIDE of events, you will get inaccurate information from the server (such as getConnections()) * - * To put it bluntly, ONLY have the server do work inside of a listener! + * To put it bluntly, ONLY have the server do work inside a listener! * * @param config these are the specific connection options */