]> git.cworth.org Git - lmno-server/commitdiff
Fix typo in comment
authorCarl Worth <cworth@cworth.org>
Sun, 10 May 2020 15:34:23 +0000 (08:34 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 10 May 2020 15:34:23 +0000 (08:34 -0700)
No functional change here.

server.js

index d08011c864966f84dc6cc10e62402d352127d77a..1b8dd292e078ebc549ea5f59bf1c2bf6ef068f59 100644 (file)
--- a/server.js
+++ b/server.js
@@ -117,7 +117,7 @@ function handle_events(request, response) {
   /* Add this new client to our list of clients. */
   const id = game.add_client(response);
 
-  /* And queue up cleanup to be tirggered on client close. */
+  /* And queue up cleanup to be triggered on client close. */
   request.on('close', () => {
     game.remove_client(id);
   });